You are viewing a single comment's thread. Return to all comments →
def group_by_marks(marks, pass_marks) # your code here return marks.group_by do |k,v| if v>= pass_marks next "Passed" else next "Failed" end end end
Seems like cookies are disabled on this browser, please enable them to open this website
Ruby - Enumerable - group_by
You are viewing a single comment's thread. Return to all comments →