이화
1217 단어 programmingjavabeginnerscodewars
본 카타의 경우 몇몇 테스트에는 여러 개의 답이 있을 수 있다.어떠한 효과적인 해결 방안도 받아들일 것이다.
입력은 항상 유효합니다. (숫자는 길이 2 이상이고 모든 항목은 숫자입니다. 목표는 항상 이 그룹의 두 항목의 총계입니다.)
기준: http://oj.leetcode.com/problems/two-sum/
twoSum[1,2,3]4==(0,2)
코드(Java 솔루션)
static int[] twoSum(int[] numbers, int target) {
// TODO Auto-generated method stub
int[] x = new int[2];
for(int i=0;i<numbers.length;i++)
{
for(int j=0;j<numbers.length;j++)
{
if(i!=j)
{
if(numbers[i]+numbers[j]==target)
{
x[0]=i;
x[1]=j;
}
}
}
}
return x;
}
자세한 내용은 https://onlylang.blogspot.com/
Reference
이 문제에 관하여(이화), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/notyetknown/two-sum-3fm6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)