Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/askl56/Palindrome-Counter
Counts number of palindromes in a given text file
https://github.com/askl56/Palindrome-Counter
Last synced: 3 months ago
JSON representation
Counts number of palindromes in a given text file
- Host: GitHub
- URL: https://github.com/askl56/Palindrome-Counter
- Owner: askl56
- Created: 2015-11-09T22:37:41.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-11T16:26:44.000Z (about 9 years ago)
- Last Synced: 2024-04-05T11:33:45.958Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Your challenge, if you choose to accept it...
Your task is to write a command line ruby app that does the following:
* Given two numbers i.e. 1 & 100, work out which of the numbers from 1 to 100 (inclusive) are palindromes.
* ```palindrome (noun) - a word, phrase, or sequence that reads the same backwards as forwards, e.g. 1, 101, 1001, 1221, etc.```
* Load the two numbers from a file where:
* The first line is the 'from' number
* The second number is the 'to' number
* Output a nice message for each of the files like this:
```bash
File checked: test_files/example.txt
Range: 1..100
Palindromes: 18
================
```
* The below command line statement should run through all of the files as per the above
```bash
ruby counter.rb
```
* You should show your workings on GitHub
* You should not spend more than 2 hours on this test