-
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
[재호] WEEK 15 Solutions #604
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.
@wogha95 님 마지막까지 고생 많으셨습니다!!
} | ||
|
||
for (let row = 0; row < N; row++) { | ||
matrix[row].reverse(); |
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.
👍
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.
이미 충분히 잘 하시지만 앞으로도 더 많은 문제들을 풀어 나가시면서 언제 올지 모르는 좋은 기회가 주어지셨을 때 코딩 테스트가 재호님의 큰 무기가 되셨으면 좋겠습니다.
15주 동안 꾸준히 문제풀이 하시느라 고생 많으셨습니다!
var isSubtree = function (root, subRoot) { | ||
const queue = [root]; | ||
|
||
while (queue.length > 0) { |
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.
queue로 푸는건 생각도 못했는데 배워갑니다;
Number.MIN_SAFE_INTEGER, | ||
Number.MAX_SAFE_INTEGER |
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.
희찬님의 경우 이 부분을 null로 해서 풀이를 하셨는데, 주어진 범위의 MIN, MAX를 사용하니 코드가 더 깔끔해 지는것 같습니다. null로 했을때 약간 null을 왜 쓸까 라는 한번 더 생각하는 부분도 MIN, MAX의 범위를 넘어가지 않도록 한다는것에 의미가 더 전달되는것 같아 파악하기도 좋은것 같구요!
이전에 리뷰 자세히 적어주셔서 감사했습니다. 역시 마지막 최후의 6인 중 한 분이실 것 같았습니다. 15주 동안 수고 많으셨습니다. |
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.