LeetCode刷题之旅(1)

LeetCode刷题之旅(1)_第1张图片

解决代码:

public class Solution {
    public int[] twoSum(int[] nums, int target) {
        int[] result = 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) {
                    result[0] = i;
                    result[1] = j;
                }
            }
        }
        return result;
    }
}

使用了最傻的方法,也就是所谓的暴力破解法,有机会去研究一下别人的做法,当然时间方面肯定会比较耗时。。。。。

LeetCode刷题之旅(1)_第2张图片

你可能感兴趣的:(LeetCode)