728x90
반응형
투 썸 구하는 방법
우선 이중 for 문으로 구하는 방법...
간단하게...
nums 안에 들어가는 i 와 j 를 구분해서 하기.
class Solution {
public int[] twoSum(int[] nums, int target) {
int nums_length = nums.length;
for(int i=0; i < nums_length - 1; ++i){
for(int j=i+1; j < nums_length; ++j){
if(nums[j] == target - nums[i]){
return new int[]{i,j};
}
}
}
return new int[2];
}
}
public class Main {
public static void main(String[] args) {
System.out.println("넌 정말 멋져 ");
Solution solution = new Solution();
int arr[] = {2,7,11,15};
solution.twoSum(arr,9);
}
}
728x90
반응형
'이유's Programming > Java' 카테고리의 다른 글
Java 람다에 관하여! (0) | 2024.11.10 |
---|---|
[ 자료구조 ] LinkedList 공부 (0) | 2020.08.31 |
[ 알고리즘 ] 선택 정렬 / 빅오 표기법 (0) | 2020.08.18 |
Java Interface (0) | 2020.08.18 |
Java input vs output System (0) | 2020.07.20 |