Join Exercism’s Ruby Track for access to 120 exercises grouped into 20 Ruby Concepts, with automatic analysis of your code and personal mentoring, all 100% free.
class HelloWorld
def self.hello(name = 'World')
"Hello, #{name}!"
end
end
Get better at programming through fun, rewarding coding exercises that test your understanding of concepts with Exercism.
Determine if a number is an Armstrong number.
Determine if a word or phrase is an isogram.
Given a string of digits, calculate the largest product for a contiguous substring of digits of length n.