You are viewing a single comment's thread. Return to all comments →
def group_by_marks(marks, pass_marks) # your code here marks.group_by do |name, score| score < pass_marks ? "Failed" : "Passed" 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 →