-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[thispath98] Week 4 #821
[thispath98] Week 4 #821
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@thispath98 님, 안녕하세요~
이번 주도 문제 푸시느라 정말 고생많으셨습니다.
코드 의도랑 복잡도 모두 자세히 남겨주셔서 리뷰하면서 큰 도움이 되었습니다!
새해 복 많이 많으시고, 다음 주도 함께 파이팅해봐요!
while True: | ||
if list1 is None: | ||
current_node.next = list2 | ||
break | ||
elif list2 is None: | ||
current_node.next = list1 | ||
break |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while True
로 주셨는데, 위의 코드에 남겨주신 것처럼 조건 명시하면 더 좋을 것 같아요 ~
while list1 is not None and list2 is not None:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
감사합니다. 무한 루프는 최소화해보겠습니다!
num_set = set(nums) | ||
for i in range(len(nums) + 1): | ||
if i not in num_set: | ||
return i |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코드 직관적이라서 정말 좋아요 👍
@mmyeon 님 리뷰 감사드립니다! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
추가 리뷰가 늦어져서 이미 머지가 되었지만.. 그래도 남깁니다. 😸
모든 문제 의도랑, 복잡도 정말 자세히 남겨주셔서 많이 배웠습니다.
특히 더 나은 풀이법을 계속 탐구하시는 게 인상깊었습니다 !
4주차 문제 모두 푸시느라 고생 많으셨고, 5주차도 함께 파이팅이에요!
O(amount): | ||
amount만큼의 크기를 가지는 dp 배열을 저장한다. | ||
""" | ||
dp = [0 for _ in range(amount + 1)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dp의 요소 초기값을 0이 아니라 최대값으로 주면 어떨까요?
저도 이번에 배웠는데, 최소 개수 구하는 문제라서 최대값으로 초기화하니까 if문도 줄고, 로직이 더 명확해지더라구요!!
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.