Given an Array of strings, return the shortest string. If there is more than one string of that length, return the string that comes first in the list. The Array will have a minimum length of 1.
Once you're done solving the problem, calculate the average run time and compare it to the average run time for the iterative version.
Input: ['aaa', 'a', 'bb', 'ccc']
Output: 'a'
Input: ['cat', 'hi', 'dog', 'an']
Output: 'hi'
Input: ['flower', 'juniper', 'lily', 'dandelion']
Output: 'lily'
You may wish to convert your iterative solution to a recursive one. We've included our old solutions in Ruby and JavaScript below:
def find_shortest_string(arr)
arr.reduce do |shortest, string|
string.length < shortest.length ? string : shortest
end
end
function findShortestString(arr) {
return arr.reduce((shortest, string) =>
string.length < shortest.length ? string : shortest
);
}
Use the language of your choosing. We've included starter files for some languages where you can pseudocode, explain your solution and code.
- Rewrite the problem in your own words
- Validate that you understand the problem
- Write your own test cases
- Pseudocode
- Code!
And remember, don't run our tests until you've passed your own!
cd
into the ruby folderruby <filename>.rb
cd
into the javascript foldernode <filename>.js
cd
into the ruby folderbundle install
rspec
cd
into the javascript foldernpm i
npm test