DSA/strings/rust/palindrome
Goutham Krishna e250c52ded
rust-> palindrome program, enforces specification in #108 (#109)
* issue 108 example: rust palindrome program

* edits on gitignore file

* update to specification file

* Updated README.md

* Updated parent README
2021-03-16 08:41:41 -04:00
..
src rust-> palindrome program, enforces specification in #108 (#109) 2021-03-16 08:41:41 -04:00
.gitignore rust-> palindrome program, enforces specification in #108 (#109) 2021-03-16 08:41:41 -04:00
Cargo.lock rust-> palindrome program, enforces specification in #108 (#109) 2021-03-16 08:41:41 -04:00
Cargo.toml rust-> palindrome program, enforces specification in #108 (#109) 2021-03-16 08:41:41 -04:00
README.md rust-> palindrome program, enforces specification in #108 (#109) 2021-03-16 08:41:41 -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