An open API service indexing awesome lists of open source software.

Projects in Awesome Lists tagged with palindrome-string

A curated list of projects in awesome lists tagged with palindrome-string .

https://github.com/pacifiquem/palindrome_checker-npm-package

npm package for checking if a world entered is a palindrome

javasc palindrome palindrome-number palindrome-string

Last synced: 07 May 2025

https://github.com/haronbh/palindrome

A C++ program to determine if a word is a palindrome. It checks if a word reads the same forwards and backwards, providing feedback on whether the input word exhibits this characteristic.

cplusplus palindrome palindrome-checker palindrome-string palindrome-validator

Last synced: 24 Mar 2025

https://github.com/rkstudio585/palindrome-checker-c

Palindrome Checker is a C program that determines if a string reads the same forward and backward. It ignores non-alphanumeric characters and is case-insensitive. The program runs in a loop, allowing multiple checks, and provides clear results and prompts to continue or exit.

c-project c-script palindrome palindrome-c palindrome-c-script palindrome-checker palindrome-number palindrome-string

Last synced: 19 Feb 2025

https://github.com/rkstudio585/palindrome-checker-python

Palindrome Checker is a Python program that checks if a string reads the same forwards and backwards. It handles multi-line inputs, ignores non-alphanumeric characters, and is case-insensitive. Users can continuously test strings and receive formatted feedback on whether each string is a palindrome.

palindrome palindrome-checker palindrome-gui palindrome-number palindrome-python palindrome-string python python-project rk rk-studio

Last synced: 19 Feb 2025

https://github.com/mahedizaber51/palindromechecker

This repository contains a Python script that checks whether a given string is a palindrome or not.

palindrome palindrome-checker palindrome-finder palindrome-string palindromes

Last synced: 02 Mar 2025

https://github.com/hardi17/palindromestringpattern

Palindrome string validation function and unite test in JAVA.

algorythm android android-application android-development java palindrome-string

Last synced: 27 Mar 2025

https://github.com/bell-kevin/palindromerecursion

palindrome Recursion. In this project, you will determine if some user input is a palindrome by reversing the input into a new variable, using recursion, and compare the original input variable with the reversed input variable -- if they are the same, the input is a palindrome. A word palindrome is straightforward, just reverse the string. A phrase palindrome contains spaces -- the spaces are not included when testing for a palindrome. The phrase "was it a rat i saw" is an example of this. It is a palindrome, after you remove all the spaces. When you get the user input, remove spaces from the string. Make all letters lowercase -- an 'X' will not match 'x' when testing if strings are equal. Reverse the string. Compare the variables holding the input phrase and the reversed phrase (no spaces in either) to find out if the input is a palindrome. Note that the clean phrase, after removing spaces, is displayed, then the reversed phrase below it, for verification. Make sure the colons line up, so the variables line up. Then display the result, that it IS or IS NOT a palindrome. There must be a recursive method to reverse the string and return that reversed string. Run the project 4 times, with a word that is a palindrome, a word that is not a palindrome, a phrase that is a palindrome, and a phrase that is not a palindrome, and take a screenshot after each execution, like the sample sessions above. Submission: the specified screenshots (of execution of the program and successful unit tests) and the root folder for the project Pay careful attention to the rubric for this assignment. Note that you must use correct formatting in the code -- appropriate indentation is most important. You can use Shift-Alt-F to have NetBeans automatically format the code correctly. If the formatting is incorrect, it will be returned to you for changes with a grade of zero. Note: You need to submit the whole project for these assignments. In File Explorer, go to the location where you created the project. There will be a folder with the name of your project -- that is the root folder of the project. If you submit the root folder of the project, the instructor can run it on a different machine to grade it. If you don't submit the proper folder, it won't run on another machine, and the assignment will be marked with a zero.

palindrome palindrome-checker palindrome-string recursion unit-testing

Last synced: 17 Mar 2025