Skip to content

Conversation

HC-kang
Copy link
Contributor

@HC-kang HC-kang commented Aug 26, 2024

제출 문제

체크 리스트

  • PR을 프로젝트에 추가하고 Week를 현재 주차로 설정해주세요.
  • 바로 앞에 PR을 열어주신 분을 코드 검토자로 지정해주세요.
  • 문제를 모두 푸시면 프로젝트에서 Status를 In Review로 설정해주세요.
  • 코드 검토자 1분 이상으로부터 승인을 받으셨다면 PR을 병합해주세요.

@HC-kang HC-kang marked this pull request as ready for review August 27, 2024 23:16
@HC-kang HC-kang requested a review from a team as a code owner August 27, 2024 23:16
Copy link
Contributor

@tolluset tolluset left a 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);
Copy link
Contributor

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
Copy link
Contributor

Choose a reason for hiding this comment

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

주석에 어떤 항목인지 써주신거 좋네여 👍

@HC-kang HC-kang merged commit a2b3164 into DaleStudy:main Aug 28, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Status: Completed
Development

Successfully merging this pull request may close these issues.

2 participants