原创
2022-08-01 12:59:36
66 阅读
原创
2022-08-01 12:44:33
153 阅读
原创
2022-08-01 12:41:07
106 阅读
原创
2022-08-01 12:41:03
83 阅读
原创
2022-08-01 12:40:59
131 阅读
Given two integers n and k, return all possible combinations ofk numbers out of 1 ... n.For example,If n = 4 and k = 2, a solution is:[ [2,4], [3,4], [2,3], [1,2], [1,3], [1,4],]
原创
2022-08-01 12:40:46
95 阅读
原创
2022-08-01 12:35:27
114 阅读
原创
2022-08-01 12:35:12
74 阅读
原创
2022-08-01 12:33:51
127 阅读
原创
2022-08-01 12:33:40
83 阅读
原创
2022-08-01 12:33:36
87 阅读
原创
2022-08-01 12:33:31
93 阅读
原创
2022-08-01 12:33:04
82 阅读
原创
2022-08-01 12:32:57
125 阅读
原创
2022-08-01 12:32:52
117 阅读
原创
2022-08-01 12:28:24
153 阅读
原创
2022-08-01 12:28:19
114 阅读
题目:Rotate an array of n elements to the right by k steps.For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4]
原创
2022-08-01 12:28:14
129 阅读
原创
2022-08-01 12:28:07
70 阅读
原创
2022-08-01 12:28:00
74 阅读
原创
2022-08-01 12:27:50
98 阅读
题目:Given numRows, generate the first numRows of Pascal's triangle.For example, given numRows = 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]]杨辉三角相信是大家再熟悉不过的啦,这
原创
2022-08-01 12:27:43
104 阅读
原创
2022-08-01 12:27:38
96 阅读
原创
2022-08-01 12:27:33
125 阅读
原创
2022-08-01 12:24:58
70 阅读
原创
2022-08-01 12:24:54
109 阅读
题目: Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2] have the following unique permutations:[1,1,2], [1,2,1], and [2,1,1]. 这
原创
2022-08-01 12:24:46
96 阅读
原创
2022-08-01 12:24:36
60 阅读
原创
2022-08-01 12:24:30
75 阅读
原创
2022-08-01 12:24:16
98 阅读