Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

all done #113

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

all done #113

wants to merge 1 commit into from

Conversation

schoetlr
Copy link

No description provided.

@@ -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.

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 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants