일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 뉴스헤드라인
- 20201013뉴스
- 20201011뉴스
- 백준2225
- Python
- 헤드라인모음
- json
- 기사
- LeetCode #Python #알고리즘 #코딩테스트 #interview
- 헤드라인뉴스
- 코테
- MySQL
- 20201018뉴스
- encoding
- 20200816뉴스
- 파이썬
- 20201015뉴스
- 경제뉴스
- 기사헤드라인
- 뉴스
- C++
- 20200615뉴스
- 알고리즘
- 헤드라인기사
- 크롤링
- 오늘의뉴스
- 헤드라인
- 20201016뉴스
- 백준
- 20201017뉴스
Archives
- Today
- Total
HelloCho
[Python] #18. 4Sum(Medium) 본문
문제 :
이 문제는 15,16 번 문제와 매우 유사하다. 사실 거의 같다 ㅋㅋ
hellocho.tistory.com/247?category=908052
hellocho.tistory.com/248?category=908052
이 문제의 해결 방법은.. three sum에서는 2개의 pointer를 이용했다면... 요번에는 3개의 pointer를 이용했다.
class Solution:
def fourSum(self, nums, target: int) :
res = []
nums.sort()
for idx, a in enumerate(nums):
if idx > 0 and a == nums[idx-1]:
continue
l1,r = idx +1,len(nums)-1
while l1 < r :
l2,r = l1 +1 ,len(nums) -1
while l2<r :
four_sum = a + nums[l1] + nums[l2] + nums[r]
if four_sum > target :
r -=1
elif four_sum < target:
l2 +=1
else:
res.append([a,nums[l1],nums[l2],nums[r]])
l2 +=1
while nums[l2] == nums[l2-1] and l2<r :
l2 +=1
l1 +=1
while nums[l1] == nums[l1-1] and l1<r :
l1 +=1
return res
l1,l2,r이라는 포인터를 사용했다.
결과.
688ms(O(n^3)), 13.8MB로 통과!
'코테 > LeetCode' 카테고리의 다른 글
[Python] #209. Minimum Size Subarray Sum(Medium) (0) | 2020.09.29 |
---|---|
[Python] #36. Valid Sudoku(Medium) (0) | 2020.09.17 |
[Python] #16. 3Sum Closest(Medium) (0) | 2020.09.15 |
[Python] 15. 3Sum(Medium) (0) | 2020.09.15 |
[Python] #59. Spiral Matrix II(Medium) (0) | 2020.09.11 |
Comments