Skip to content

Commit 1f0bfbb

Browse files
feat: add utility to check if an integer's binary representation is a palindrome
1 parent 98fbea9 commit 1f0bfbb

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

src/main/java/com/thealgorithms/bitmanipulation/BinaryPalindromeCheck.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
* </p>
1010
*
1111
* @author Hardvan
12+
* @see com.thealgorithms.strings.Palindrome
13+
* @see com.thealgorithms.stacks.PalindromeWithStack
14+
* @see com.thealgorithms.maths.LowestBasePalindrome
15+
* @see com.thealgorithms.datastructures.lists.PalindromeSinglyLinkedList
16+
* @see com.thealgorithms.maths.PalindromePrime
17+
* @see com.thealgorithms.maths.PalindromeNumber
1218
*/
1319
public final class BinaryPalindromeCheck {
1420
private BinaryPalindromeCheck() {

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
*
2424
* @see <a href="https://oeis.org/A016026">OEIS A016026 - Smallest base in which
2525
* n is palindromic</a>
26+
* @see com.thealgorithms.strings.Palindrome
27+
* @see com.thealgorithms.stacks.PalindromeWithStack
28+
* @see com.thealgorithms.bitmanipulation.BinaryPalindromeCheck
29+
* @see com.thealgorithms.datastructures.lists.PalindromeSinglyLinkedList
30+
* @see com.thealgorithms.maths.PalindromePrime
31+
* @see com.thealgorithms.maths.PalindromeNumber
2632
* @author TheAlgorithms Contributors
2733
*/
2834
public final class LowestBasePalindrome {

0 commit comments

Comments
 (0)