- 博客(4)
- 收藏
- 关注
原创 2019顺丰科技笔试
1.笔试题目: 考察设计模式(工厂方法,代理) Mysql(查询,索引) 等等 2.技术面试题目: 1.求a^n快速方法,通过递归 public static void main(String[] args) { System.out.println(rec(2, 3)); } public static int rec(int a, int n) { if (n == 1) { return a; }
2020-07-27 23:05:41 364
原创 阿里巴巴2021校招
阿里2021校招 static List<String> val = new ArrayList<>(); public static void main(String[] args) { Scanner sc = new Scanner(System.in); //数据组数 int num = sc.nextInt(); int a = 1; for (int i = 0; i <
2020-07-27 21:05:53 436
原创 狼羊白菜问题
狼羊白菜问题 public static void main(String[] args) { int arr[] = {0, 0, 0, 0}; ArrayList<String> strings = new ArrayList<>(); strings.add(Arrays.toString(arr)); solution(arr, strings); } public static void
2020-07-27 20:43:17 207
原创 多益网络2019校招笔试
多益网络2019届校招笔试 从n个数中取k个数,相加等于m,有多少种方法 final static int[] arr = {1, 2, 3, 4, 5, 6, 7}; final static int count = 4; final static int sum = 12; final static List<List<Integer>> record = new ArrayList<List<Integer>>();
2020-07-27 20:31:20 613
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人