Skip to content
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

Merged
merged 5 commits into from
Nov 23, 2024
Merged

[강희찬] WEEK 15 Solution #605

merged 5 commits into from
Nov 23, 2024

Conversation

HC-kang
Copy link
Contributor

@HC-kang HC-kang commented Nov 19, 2024

답안 제출 문제

체크 리스트

  • PR을 프로젝트에 추가하고 Week를 현재 주차로 설정해주세요.
  • 바로 앞에 PR을 열어주신 분을 코드 검토자로 지정해주세요.
  • 문제를 모두 푸시면 프로젝트에서 Status를 In Review로 설정해주세요.
  • 코드 검토자 1분 이상으로부터 승인을 받으셨다면 PR을 병합해주세요.

@HC-kang HC-kang marked this pull request as ready for review November 21, 2024 23:26
@HC-kang HC-kang requested a review from a team as a code owner November 21, 2024 23:26
Copy link
Contributor

@TonyKim9401 TonyKim9401 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

세상은 좁고 인터넷 세상은 더 좁네요..
희찬님과 또 같이 스터디를 하게 되어 너무 반가웠고 15주동안 모든 문제를 여러 가지 방법과 최적화를 예상하며 풀어내시는 모습에 감탄하고 많이 배웠습니다.
자스는 아직 익숙하지 않아 문법적인 측면에서도 많은 공부가 되었습니다.
앞으로도 또 좋은 스터디에서 뵐 날을 고대하고 있겠습니다.
15주 동안 너무 고생 많으셨습니다.

Comment on lines +12 to +13
const len1 = expandBothSides(s, i, i); // odd
const len2 = expandBothSides(s, i, i + 1); // even
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

별거 아닙니다만, 평소 알고리즘 푸는 습관이 그대로 코드에 드러난다고 생각하기 때문에 변수 명을 odd, even과 관련된 걸로 했으면 주석이 없어도 괜찮지 않았을까 싶습니다 :)

Comment on lines +24 to +25
if (!p && !q) return true;
if (!p || !q) return false;
Copy link
Contributor

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;
로 바꿀 수 있지 않을까요?
한줄 한줄의 의미를 살리고 가독성 면에서는 명확하게 전달하는 측면에서는 현재 풀이가 좋다고 생각합니다!

Copy link
Contributor

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) 조건을 처리하기 좋을 것 같습니다

@EgonD3V
Copy link
Contributor

EgonD3V commented Nov 22, 2024

15주 동안 수고 많으셨습니다. 그 동안 적극적으로 리뷰 남겨주셔서 참 감사했습니다. 풀이도 좋으시고 덕분에 많이 배울 수 있었습니다. 감사합니다.

@HC-kang HC-kang merged commit 93acc92 into DaleStudy:main Nov 23, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Status: Completed
Development

Successfully merging this pull request may close these issues.

3 participants