最小的k个数(简单)
2020年9月3日
题目来源:力扣
解题
class Solution {
public int[] getLeastNumbers(int[] arr
, int k
) {
Arrays
.sort(arr
);
int[] res
=new int[k
];
for(int i
=0;i
<k
;i
++){
res
[i
]=arr
[i
];
}
return res
;
}
}
转载请注明原文地址:https://tech.qufami.com/read-5750.html