-
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
[윤태권] Week5 문제 풀이 #444
[윤태권] Week5 문제 풀이 #444
Conversation
|
||
StringBuilder sb = new StringBuilder(); | ||
for (int i = 0; i < 26; i++) { | ||
sb.append("^").append(count[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.
Note:
StringBuilder 에 appending 할 때 "^" 와 같이 구분자를 넣어야 하는 이유
- [2, 0, 1] -> "201"
- [20, 1] -> "201"
위와 같은 케이스가 발생함. 따라서 구분자를 넣어서 이와 같은 충돌 케이스를 방지함.
/** | ||
* 시간 복잡도: O(n) | ||
* - 문제 조건 1 <= prices.length <= 10^5 를 보고, 우선 O(n^2)는 피해야겠다는 생각을 우선하게 됨. | ||
* - 결국 이 문제는 각 인덱스가 날짜 개념으로 적용되기 때문에, 순차적으로 흘러감. (최대 이익을 계산할 때 결국 각 일자 별로 내가 얼마의 이득을 봤는지를 계산하고, 이 중 최댓값을 고르면 되는 구조) | ||
* - 따라서 한 번의 순회로 문제를 풀 수 있음 | ||
* 공간 복잡도: O(1) | ||
*/ |
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.
접근 방식을 잘 작성해주셔서 이해가 잘 되었습니다 👍
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.
고생하셨습니다~
답안 제출 문제
체크 리스트
In Review
로 설정해주세요.