leetcode答案-PandaLeetCode:郝楠A,A,A,A,A

时间:2024-07-19 19:52:35
【文件属性】:

文件名称:leetcode答案-PandaLeetCode:郝楠A,A,A,A,A

文件大小:2KB

文件格式:ZIP

更新时间:2024-07-19 19:52:35

系统开源

leetcode 答案 PandaLeetCode primer to advance 本仓库使用VSCode完成,以下是一个leetcode插件: Day 1 2019年02月18日 simple two-sum 第一版本: 我自己一开始就是这个水平. 双层循环. class Solution { public int[] twoSum(int[] nums, int target) { int[] answer = new int[2]; for (int i = 0; i < nums.length; i++) { for (int j = i + 1; j < nums.length; j++) { if ((nums[i] + nums[j]) == target) { answer[0] = i; answer[1] = j; } } } return answer; } } 第二版本: 看了别人的结题思路. 放到HashMap里面 遍历给定整型数组 根据HashMap的key唯一属性轻松获取到符合条件的key class Solution { public int[] t


【文件预览】:
PandaLeetCode-master
----README.md(2KB)
----1.two-sum.java(1KB)

网友评论