-
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 Solution #605
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.
세상은 좁고 인터넷 세상은 더 좁네요..
희찬님과 또 같이 스터디를 하게 되어 너무 반가웠고 15주동안 모든 문제를 여러 가지 방법과 최적화를 예상하며 풀어내시는 모습에 감탄하고 많이 배웠습니다.
자스는 아직 익숙하지 않아 문법적인 측면에서도 많은 공부가 되었습니다.
앞으로도 또 좋은 스터디에서 뵐 날을 고대하고 있겠습니다.
15주 동안 너무 고생 많으셨습니다.
const len1 = expandBothSides(s, i, i); // odd | ||
const len2 = expandBothSides(s, i, i + 1); // even |
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.
별거 아닙니다만, 평소 알고리즘 푸는 습관이 그대로 코드에 드러난다고 생각하기 때문에 변수 명을 odd, even과 관련된 걸로 했으면 주석이 없어도 괜찮지 않았을까 싶습니다 :)
if (!p && !q) return true; | ||
if (!p || !q) return false; |
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.
이거 혹시 한줄로
if(!p || !q) reutrn !p && !q;
로 바꿀 수 있지 않을까요?
한줄 한줄의 의미를 살리고 가독성 면에서는 명확하게 전달하는 측면에서는 현재 풀이가 좋다고 생각합니다!
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.
early return인데 24, 25줄이 서로 겹치는 부분이 있어서 조금 애매한 것 같습니다.
if !p && !q
else if (p && q) && (p.val == q.val)
else
이렇게 나누면 겹치는 조건 없이 else문에서 (!p && q) || (p && !q) || (p.val != q.val) 조건을 처리하기 좋을 것 같습니다
15주 동안 수고 많으셨습니다. 그 동안 적극적으로 리뷰 남겨주셔서 참 감사했습니다. 풀이도 좋으시고 덕분에 많이 배울 수 있었습니다. 감사합니다. |
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.