-
-
Notifications
You must be signed in to change notification settings - Fork 195
[강희찬] WEEK 3 Solution #384
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.
고생하셨슴당!!
// S.C: O(amount) | ||
function coinChange(coins: number[], amount: number): number { | ||
if (amount == 0) return 0; | ||
const dp = new Array(amount + 1).fill(Infinity); |
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.
오 인피니티 쓰신거 신기하네영 👀
@@ -0,0 +1,19 @@ | |||
// T.C: O(n^t) // n: candidates.length, t: target |
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
로 설정해주세요.