Skip to content

Commit 819adbb

Browse files
[TypeScript] Remove type unused
1 parent a1fa30e commit 819adbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TypeScript/palindrome_number.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// =============================================================================
1818

1919
// TODO: Sin hacer mutacion con String
20-
export function isPalindromeNumber(x: number): boolean {
20+
export function isPalindromeNumber(x: number) {
2121
const number = String(x).split("").reverse().join("");
2222
const parseNumber = Number.parseInt(number);
2323

0 commit comments

Comments
 (0)