-
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
[donghyeon95] Week5 #881
[donghyeon95] Week5 #881
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.
이번 주도 수고 많으셨습니다. 다음주도 화이팅!
return hm.values().stream().toList(); | ||
} | ||
|
||
public String rearangeStr (String str) { |
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.
public String rearangeStr (String str) { | |
public String reArrangeStr (String str) { |
FYI: 오타가 있는 것 같습니다
@@ -0,0 +1,29 @@ | |||
import java.util.HashMap; | |||
|
|||
class Trie { |
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.
트라이 자료구조는 트리의 일종인데 노드를 구현하지 않으신 것 같습니다. 노드를 이용해서 구현해보시는 걸 추천드립니다.
import java.util.List; | ||
import java.util.stream.Collectors; | ||
|
||
class Solution { |
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.
사실 이 문제는 implement-trie-prefix-tree에서 구현한 트라이 자료구조와 연관이 있는 문제여서, 트라이를 사용해서 풀어보시면 도움이 되실 것 같습니다.
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.