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

feat: 압축-카카오 문제 reduce 활용 풀이 추가 #102

Merged
merged 2 commits into from
Sep 22, 2022

Conversation

ssi02014
Copy link
Contributor

기존 풀이에 추가한 풀이

레벨 2, [3차]압축 풀이 추가: 9c743c6

Copy link
Owner

@codeisneverodd codeisneverodd left a comment

Choose a reason for hiding this comment

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

멋진 풀이 잘 보았습니다! reduce 활용이 인상적이네요!
다시 기여해주셔서 감사합니다 😄

Comment on lines 38 to 65
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",
];
Copy link
Owner

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))

Copy link
Contributor Author

@ssi02014 ssi02014 Sep 21, 2022

Choose a reason for hiding this comment

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

어우 너무 좋은 방법같습니다 :) 👍

Comment on lines +68 to +78
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;
}, "");
Copy link
Owner

Choose a reason for hiding this comment

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

와우 너무 멋진 풀이네요!!! reduce 메서드를 이번 풀이에 멋지게 사용하신 것 같습니다 배워갑니다!! 😄

@codeisneverodd codeisneverodd merged commit bf55435 into codeisneverodd:main Sep 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants