We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1fa30e commit 819adbbCopy full SHA for 819adbb
TypeScript/palindrome_number.ts
@@ -17,7 +17,7 @@
17
// =============================================================================
18
19
// TODO: Sin hacer mutacion con String
20
-export function isPalindromeNumber(x: number): boolean {
+export function isPalindromeNumber(x: number) {
21
const number = String(x).split("").reverse().join("");
22
const parseNumber = Number.parseInt(number);
23
0 commit comments