WeIrD StRiNg CaSe

Ruby

Write a function called weird_case that accepts a string, and returns the same string with all even indexed characters in each word upper cased, and all odd indexed characters in each word lower cased. The indexing just explained is zero based, so the zero-ith index is even, therefore that character should be upper cased.

The passed in string will only consist of alphabetical characters and spaces(' '). Spaces will only be present if there are multiple words. Words will be separated by a single space(' ').

Examples:

weird_case("String") #=> returns "StRiNg"
weird_case("Weird string case") #=> returns "WeIrD StRiNg CaSe"
def weird_case string end
< >