File tree Expand file tree Collapse file tree
src/main/java/com/thealgorithms Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 *
1010 * See more:
1111 * https://www.geeksforgeeks.org/function-to-check-if-a-singly-linked-list-is-palindrome/
12+ *
13+ * @see com.thealgorithms.strings.Palindrome
14+ * @see com.thealgorithms.stacks.PalindromeWithStack
15+ * @see com.thealgorithms.bitmanipulation.BinaryPalindromeCheck
16+ * @see com.thealgorithms.maths.LowestBasePalindrome
17+ * @see com.thealgorithms.maths.PalindromePrime
18+ * @see com.thealgorithms.maths.PalindromeNumber
1219 */
1320@ SuppressWarnings ("rawtypes" )
1421public final class PalindromeSinglyLinkedList {
Original file line number Diff line number Diff line change 33import java .util .ArrayList ;
44import java .util .List ;
55
6+ /**
7+ * A class to check and generate palindromic prime numbers.
8+ * A palindromic prime is a prime number that is also a palindromic number.
9+ *
10+ * @see com.thealgorithms.strings.Palindrome
11+ * @see com.thealgorithms.stacks.PalindromeWithStack
12+ * @see com.thealgorithms.bitmanipulation.BinaryPalindromeCheck
13+ * @see com.thealgorithms.maths.LowestBasePalindrome
14+ * @see com.thealgorithms.datastructures.lists.PalindromeSinglyLinkedList
15+ * @see com.thealgorithms.maths.PalindromeNumber
16+ */
617public final class PalindromePrime {
718 private PalindromePrime () {
819 }
You can’t perform that action at this time.
0 commit comments