Solves of many popular algorithm problems in Ruby
- fact.rb - Factorial. Spoj code: FCTRL. URL: http://www.spoj.com/problems/FCTRL/
- fancy_validate.rb - Implement Accessors With Validation in Ruby; URL: http://thereq.com/q/300/ruby-software-interview-question/implement-accessors-with-validation
- find_missing.rb - Find missing number in 1..N sequence (simplification of http://www.spoj.com/problems/MISSING/), 2 ways to solve it
- find_missing_number_spoj_MISSING_sum.rb - Missing Number; Sposj code: MISSING; URL: http://www.spoj.com/problems/MISSING/
- lastdig.rb: The last digit; Spoj code: LASTDIG URL: http://www.spoj.com/problems/LASTDIG/
- lastdig2.rb: The last digit re-visited; Spoj code: LASTDIG2 URL: http://www.spoj.com/problems/LASTDIG2/
- lifeproblem.rb -Life, the Universe, and Everything; Spoj code:TEST; URL: http://www.spoj.com/problems/TEST/
- memo.rb: Memoization techniques in Ruby; URL: http://thereq.com/q/99/ruby-software-interview-question/memoization-techniques
- next_number_with_same_digits.rb: Next highest number with same digits in Ruby; URL:http://thereq.com/q/151/ruby-software-interview-question/next-highest-number-with-same-digits
- next_palindrome.rb: The Next Palindrome; URL: http://www.spoj.com/problems/PALIN/