An open API service indexing awesome lists of open source software.

https://github.com/trizen/ruby-scripts

A small collection of Ruby scripts.
https://github.com/trizen/ruby-scripts

ruby-scripts

Last synced: 5 months ago
JSON representation

A small collection of Ruby scripts.

Awesome Lists containing this project

README

          

# ruby-scripts

A small collection of day-to-day Ruby scripts used in solving problems or in implementing some elegant solutions to old problems.

# Summary

* Math
* [Binary addition](./Math/binary_addition.rb)
* [Count primes bellow n](./Math/count_primes_bellow_n.rb)
* [Is even perfect number](./Math/is_even_perfect_number.rb)
* [Is happy number](./Math/is_happy_number.rb)
* [Is perfect square](./Math/is_perfect_square.rb)
* [LambertW function](./Math/LambertW_function.rb)
* [Long addition](./Math/long_addition.rb)
* [Modular exponentiation](./Math/modular_exponentiation.rb)
* [Nth molecular number](./Math/nth_molecular_number.rb)
* [Roman numerals decode](./Math/roman_numerals_decode.rb)
* [Roman numerals encode](./Math/roman_numerals_encode.rb)
* Text
* [Longest common prefix](./Text/longest_common_prefix.rb)
* [Smart word wrap](./Text/smart_word_wrap.rb)
* [Smart word wrap lazy](./Text/smart_word_wrap_lazy.rb)