WIP, so far checks the reverse of the string to see if it is equal to itself. Next to do the index check
- Prompt user for how many strings they plan to input to check if it is a palindrome. Cannot exceed 20 nor be lower than 1. Prompts for input again until this is met
- Start with the last string to check and push into a stack for later processing.
- Runs a check on each to see if it is or is not a palindrome. (Most likely will store these into a String array using some sort of counter as the index)
- WIP from this point onward: Most likely will calculate current string's length and half it (+1 to account for odd amounts)
- Test, if not met remove letter from right first, check if not then remove letter from left, check. Until No string present then print not a palindrome if not or palindrome and what to remove it it is.
- 0.1: Beta Release
- Checks if palindrome
- To Be Added:
- Check which index can be removed to make it work if at all.