-
-
Notifications
You must be signed in to change notification settings - Fork 195
[jiji-hoon96] WEEK 01 solutions #1131
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
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.
주석이 잘 작성되어 있다고 느껴집니다.
수고하셨습니다👍
|
||
function longestConsecutive(nums: number[]): number { | ||
if (nums.length === 0) return 0; | ||
const sortNum = Array.from(new Set(nums)).sort((a, b) => a - b); |
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.
sortedNum이 더 명확한 변수명일 것 같아요!
|
||
if (sortNum.length === 1) return 1; | ||
|
||
const resultArray : number[] = [] |
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.
최댓값만 필요하니까 resultArray 제거하고 maxCount 변수 하나로도 추적할 수 있지 않을까요?
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.
오! 피드백 감사합니다
개선해보았어요!
for(const [key] of sortObject){ | ||
if(k>0){ | ||
result.push(Number(key)) | ||
k--; |
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.
k를 직접 감소시키는 방법도 있지만 slice
를 쓸 수도 있을 것 같아요!
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.
sortObject.slice(0, k).map(([key]) => Number(key))
코드가 더 간결해졌군요!
답안 제출 문제
작성자 체크 리스트
In Review
로 설정해주세요.검토자 체크 리스트
Important
본인 답안 제출 뿐만 아니라 다른 분 PR 하나 이상을 반드시 검토를 해주셔야 합니다!