Skip to content

Commit 2577233

Browse files
committed
fix: add missing newline at the end of the solution files
1 parent d3774cd commit 2577233

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contains-duplicate/eunice-hong.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
function containsDuplicate(nums: number[]): boolean {
1313
let numSet = new Set(nums);
1414
return numSet.size != nums.length;
15-
};
15+
};

top-k-frequent-elements/eunice-hong.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ function topKFrequent(nums: number[], k: number): number[] {
2020
.sort((a, b) => b[1] - a[1])
2121
.slice(0, k)
2222
.map(([num, _]) => num);
23-
};
23+
};

0 commit comments

Comments
 (0)