Skip to content

Commit 9b6ee40

Browse files
committed
fix ci
1 parent 495e40d commit 9b6ee40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

top-k-frequent-elements/khg0712.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ function topKFrequent(nums: number[], k: number): number[] {
1313
// 내림차순으로 정렬하고, k개 만큼 자르고 배열로 반환
1414
const result = Object.entries(dict).sort((a, b) => b[1] - a[1]).slice(0, k);
1515
return result.map(([key]) => parseInt(key));
16-
};
16+
};

two-sum/khg0712.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ function twoSum(nums: number[], target: number): number[] {
1818
}
1919

2020
return []
21-
};
21+
};

0 commit comments

Comments
 (0)