반응형
풀었던 문제를 파이썬으로 다시 풀어보기. 분명 풀었던 문제임에도 낯설다...
from typing import List
class cote0401_455_assignCookies:
def findContentChildren(self, g: List[int], s: List[int]) -> int:
g.sort()
s.sort()
index=0
count=0
for i in range(len(s)):
if index > len(g)-1:
return count
if g[index] <= s[i]:
count+=1
index+=1
i+=1
return count
728x90
반응형
'TIL > Coding Test' 카테고리의 다른 글
[LeetCode] Reverse Linked List (2) | 2021.04.09 |
---|---|
[LeetCode] Convert Binary Number in a Linked List to Integer (0) | 2021.04.05 |
[LeetCode] Two Sum (Python) (0) | 2021.03.31 |
[LeetCode] Lemonade Change (Python) (0) | 2021.03.29 |
[백준] 베스트셀러 Best Seller (0) | 2021.03.29 |