Skip to content

Commit

Permalink
fix: 오탈자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Yjason-K committed Jan 11, 2025
1 parent 7b26180 commit 928c097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion word-break/Yjason-K.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* - m: 단어 사전 길이
* - k: 단어 사전 내 단어 길이
*
* 공간 복잠성 O(n)
* 공간 복잡성 O(n)
* - 메모이제이션(memo) 및 재귀 호출 스택 크기가 문자열 길이 n에 비례.
*/
function wordBreak(s: string, wordDict: string[]): boolean {
Expand Down

0 comments on commit 928c097

Please sign in to comment.