Skip to content

Instantly share code, notes, and snippets.

@olvap
Last active June 13, 2018 15:42
Show Gist options
  • Save olvap/c610ef1b6ef964a325635f4b42a47ba1 to your computer and use it in GitHub Desktop.
Save olvap/c610ef1b6ef964a325635f4b42a47ba1 to your computer and use it in GitHub Desktop.
def default_grade
return nil unless grades
return '7' if grades.include?('7')
grades.first
end
def default_grade
((['7'] & grades) + grades).first
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment