Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions letsdrill.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
def get_letter_grade(integer)

#Put your code here!

if (90..100).include?(integer)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Interesting solution to use a range and include?! You could also use Ruby's comparable methods since they are integers.

"A"
elsif (80..89).include?(integer)
"B"
elsif (70..79).include?(integer)
"C"
elsif (60..69).include?(integer)
"D"
else
"F"
end
end

def shortest_string(array)

#Put your code here!
return nil if array.empty?

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this line is necessary as min_by will return nil by default if the array is empty. Nice use of the & method syntax though 😄


array.min_by(&:length)

end

Expand Down