leetcode1
Posted prog123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1相关的知识,希望对你有一定的参考价值。
public class Solution { public int[] twoSum(int[] nums, int target) { int []sum = 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) { sum[0] = i; sum[1] = j; break; } } } return sum; } }
以上是关于leetcode1的主要内容,如果未能解决你的问题,请参考以下文章