-
Notifications
You must be signed in to change notification settings - Fork 99
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
feat: 압축-카카오 문제 reduce 활용 풀이 추가 #102
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.
멋진 풀이 잘 보았습니다! reduce 활용이 인상적이네요!
다시 기여해주셔서 감사합니다 😄
level-2/[3차]-압축&17684&.js
Outdated
const dict = [ | ||
"A", | ||
"B", | ||
"C", | ||
"D", | ||
"E", | ||
"F", | ||
"G", | ||
"H", | ||
"I", | ||
"J", | ||
"K", | ||
"L", | ||
"M", | ||
"N", | ||
"O", | ||
"P", | ||
"Q", | ||
"R", | ||
"S", | ||
"T", | ||
"U", | ||
"V", | ||
"W", | ||
"X", | ||
"Y", | ||
"Z", | ||
]; |
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.
직접 적어주는 방식은 알파벳이 누락되거나, 대소문자등의 문제가 생길 수 있습니다!
다음과 Array.from
과 아스키코드를 사용한 방식은 어떨까요?
const dict = Array.from({length: 26},(_, i) => String.fromCharCode(65 + i))
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.
어우 너무 좋은 방법같습니다 :) 👍
const lastWordAndCompression = msg.split("").reduce((acc, cur) => { | ||
const nextWord = acc + cur; | ||
const nextWordIdx = dict.indexOf(nextWord); | ||
const prevWordIdx = dict.indexOf(acc); | ||
|
||
if (nextWordIdx !== -1) return acc + cur; | ||
dict.push(nextWord); | ||
|
||
if (prevWordIdx !== -1) result.push(prevWordIdx + 1); | ||
return cur; | ||
}, ""); |
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.
와우 너무 멋진 풀이네요!!! reduce
메서드를 이번 풀이에 멋지게 사용하신 것 같습니다 배워갑니다!! 😄
기존 풀이에 추가한 풀이
레벨 2, [3차]압축 풀이 추가: 9c743c6