Leet Code OJ 1. Two Sum [Difficulty: Easy]
生活随笔
收集整理的這篇文章主要介紹了
Leet Code OJ 1. Two Sum [Difficulty: Easy]
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目:
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
翻譯:
給定一個整形數組和一個整數target,返回2個元素的下標,它們滿足相加的和為target。
你可以假定每個輸入,都會恰好有一個滿足條件的返回結果。
Java版代碼1(時間復雜度O(n)):
public class Solution {public int[] twoSum(int[] nums, int target) {Map<Integer,Integer> map=new HashMap<>();for(int i=0;i<nums.length;i++){Integer index=map.get(target-nums[i]);if(index==null){map.put(nums[i],i);}else{return new int[]{i,index};}}return new int[]{0,0};} }Java版代碼2(時間復雜度O(n^2)):
public class Solution {public int[] twoSum(int[] nums, int target) {int[] result=new int[2];for(int i=0;i<nums.length-1;i++){for(int j=i+1;j<nums.length;j++){if(nums[i]+nums[j]==target){return new int[]{i,j};}}}return result;} } 超強干貨來襲 云風專訪:近40年碼齡,通宵達旦的技術人生總結
以上是生活随笔為你收集整理的Leet Code OJ 1. Two Sum [Difficulty: Easy]的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Leet Code OJ 191. Nu
- 下一篇: Leet Code OJ 110. Ba