huanghui1989
huanghui1989
全部文章
题解
归档
标签
去牛客网
登录
/
注册
huanghui1989的博客
全部文章
/ 题解
(共3篇)
题解 | #两数之和#
import java.util.*; public class Solution { /** * * @param numbers int整型一维数组 * @param target int整型 * @return int整型一维数组 */ pu...
2021-06-30
0
402
题解 | #最小的K个数#
import java.util.*; /* public class TreeNode { int val = 0; TreeNode left = null; TreeNode right = null; } / public class Solution { /** * ...
2021-06-30
0
427
题解 | #最小的K个数#
import java.util.ArrayList; public class Solution { public ArrayList<integer> GetLeastNumbers_Solution(int [] input, int k) { int find...
2021-06-30
0
355