-
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
[anniemon78] Week 2 #748
[anniemon78] Week 2 #748
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.
2주차도 수고 많으셨습니다 화이팅
3sum/anniemon.js
Outdated
} | ||
let l = i + 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.
코드 가독성을 위해서 논리적으로 구분되는 부분들을 띄워주시면 좋을 것 같습니다
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.
넵 반영했습니다
climbing-stairs/anniemon.js
Outdated
* @return {number} | ||
*/ | ||
var climbStairs = function(n) { | ||
const memo = { 1:1, 2:2 }; |
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.
만약 제가 면접관이라면 왜 list가 아닌 map을 사용했는지 물어볼 것 같습니다. 개인적으로 이전 단계의 값으로 다음 단계의 값을 구한다는 의미에는 list가 더 적합하지 않을까 싶습니다.
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.
좋은 포인트네요. 반영했습니다.
감사합니다.
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.