Skip to content

Commit ef766e7

Browse files
feat: add PalindromeNumber utility class to check for palindromic integers
1 parent 0658e7b commit ef766e7

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

src/main/java/com/thealgorithms/maths/PalindromeNumber.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
package com.thealgorithms.maths;
22

3+
/**
4+
* A class to check if a given number is a palindrome.
5+
* A palindromic number is a number that remains the same when its digits are reversed.
6+
*
7+
* @see com.thealgorithms.strings.Palindrome
8+
* @see com.thealgorithms.stacks.PalindromeWithStack
9+
* @see com.thealgorithms.bitmanipulation.BinaryPalindromeCheck
10+
* @see com.thealgorithms.maths.LowestBasePalindrome
11+
* @see com.thealgorithms.datastructures.lists.PalindromeSinglyLinkedList
12+
* @see com.thealgorithms.maths.PalindromePrime
13+
*/
314
public final class PalindromeNumber {
415
private PalindromeNumber() {
516
}

0 commit comments

Comments
 (0)