DSA/algorithms/Rust/strings/palindrome
Ming Tsai e9a1aedfcd chore: migration of rust 2021-04-17 21:49:35 -04:00
..
src chore: migration of rust 2021-04-17 21:49:35 -04:00
.gitignore chore: migration of rust 2021-04-17 21:49:35 -04:00
Cargo.lock chore: migration of rust 2021-04-17 21:49:35 -04:00
Cargo.toml chore: migration of rust 2021-04-17 21:49:35 -04:00
README.md chore: migration of rust 2021-04-17 21:49:35 -04:00

README.md

The Palindrome Algorithm

This checks whether a string is palindrome or not and returns a result.

Prerequisites

Instructions for running the project

  • Open a terminal/powershell window in the folder/directory.

  • Run the following command

    cargo run --release
    

Test Cases & Output

  • abba -> true
  • abbcccbba -> true
  • abbccbbba -> false