Skip to content

Commit

Permalink
fix: line break
Browse files Browse the repository at this point in the history
  • Loading branch information
Yjason-K committed Jan 11, 2025
1 parent de48951 commit 79ca2b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion best-time-to-buy-and-sell-stock/Yjason-K.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ function maxProfit(prices: number[]): number {
}

return maxProfit;
}
}

1 change: 1 addition & 0 deletions encode-and-decode-strings/Yjason-K.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ function encode(strs: string[]): string {
function decode(s: string): string[] {
return s.split(':');
}


3 changes: 2 additions & 1 deletion group-anagrams/Yjason-K.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ function groupAnagrams(strs: string[]): string[][] {

// anagramMap에서 values만 배열로해서 출력
return Array.from(anagramMap.values())
}
}

0 comments on commit 79ca2b9

Please sign in to comment.