-
-
Save abloom/5314159 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# shortest_string is a method that takes an array of strings as its input | |
# and returns the shortest string | |
# +array+ is an array of strings | |
# shortest_string(array) should return the shortest string in +array+ | |
# If +array+ is empty the method should return nil | |
# array.sort.first | |
def shortest_string(array) | |
new_count = [ ] | |
array.each do |count| | |
new_count.push(count.length) | |
end | |
new_count.sort.first | |
end | |
# array = ['cat', 'zzzzzzz', 'apples'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment