Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
문제
풀이
이차원 반복문을 통해 해결할 수 있는 문제이지만 시간 복잡도가 O(N^2)이므로, O(N)을 이용하여 해결
nums
배열을 오름차순 정렬하고, 배열 내부에서 왼쪽과 오른쪽의 포인터 변수를 각각 생성target
보다 크다면 오른쪽 포인터를 왼쪽으로 이동,target
보다 작다면 왼쪽 포인터를 오른쪽으로 이동nums
배열에서 왼쪽 포인터와 오른쪽 포인터의 값이 가지는 위치를 구하기어려웠던 점
twoSum
메서드 내부에서 모든 로직을 작성하여 해결할 수 있는 문제임에도 불구하고, 불필요한 함수 분리를 고려한 것이 오히려 머리를 복잡하게 만든 것 같음.알게된 점
sort
메서드는 정렬된 배열을 반환하면서 기존의 배열까지도 정렬한다.indexOf
는 배열의 0부터 시작해서 값을 읽고,lastIndexOf
는 배열의 뒤에서부터 값을 읽는다.