https://github.com/nivasharmaa/palindrome-wizard
A Java program for determining whether a given string is a palindrome. Features user input handling, case insensitivity, and ignores spaces and punctuation.
https://github.com/nivasharmaa/palindrome-wizard
conditional-statements java string-manipulation user-input
Last synced: 9 months ago
JSON representation
A Java program for determining whether a given string is a palindrome. Features user input handling, case insensitivity, and ignores spaces and punctuation.
- Host: GitHub
- URL: https://github.com/nivasharmaa/palindrome-wizard
- Owner: nivasharmaa
- Created: 2024-08-07T03:28:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-07T04:43:58.000Z (over 1 year ago)
- Last Synced: 2025-01-19T09:43:24.227Z (11 months ago)
- Topics: conditional-statements, java, string-manipulation, user-input
- Language: Java
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Palindrome Wizard
## Overview
Palindrome Wizard is a Java program designed to determine whether a given string is a palindrome. A palindrome is a string that reads the same forwards and backwards, ignoring spaces, punctuation, and capitalization. This program provides a simple and efficient way to check for palindromes using string manipulation and algorithmic techniques.
## Features
- **User Input**: Prompts the user to input a string to be checked.
- **Palindrome Check**: Determines if the input string is a palindrome.
- **Case Insensitivity**: Ignores case when checking for palindromes.
- **Whitespace and Punctuation Ignorance**: Ignores spaces and punctuation during the palindrome check.
## Concepts Covered
- String Manipulation
- Algorithm Implementation
- User Input Handling
- Conditional Statements