I\'m working on some app academy practice questions and I can\'t seem to print two 00\'s for my time conversion. Here\'s what I have so far:
def time_convers
The method Fixnum#divmod is useful here:
def time_conversion(minutes) "%d hours: %02d minutes" % minutes.divmod(60) end time_conversion(360) #=> "6 hours: 00 minutes"