You are viewing a single comment's thread. Return to all comments →
def group_by_marks(marks, pass_marks)
data = marks.group_by { |_,mark| mark >= pass_marks} result = {} result["Passed"] = data[true] unless data[true].nil? result["Failed"] = data[false] unless data[false].nil? result
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 →
def group_by_marks(marks, pass_marks)
end