We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0658e7b commit ef766e7Copy full SHA for ef766e7
1 file changed
src/main/java/com/thealgorithms/maths/PalindromeNumber.java
@@ -1,5 +1,16 @@
1
package com.thealgorithms.maths;
2
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
+ */
14
public final class PalindromeNumber {
15
private PalindromeNumber() {
16
}
0 commit comments