Closed nnoco closed 9 years ago
before: minutes_in_a_day = num_minutes % (24 * 60) minutes_in_a_day % 60
after: num_minutes % 60
before and after is equivalent functionally. Thus, remove the meaningless part of before.
Hey nnoco!
Thanks for submitting this pull request! I'm here to inform the recipients of the pull request that you've already signed the CLA.
before: minutes_in_a_day = num_minutes % (24 * 60) minutes_in_a_day % 60
after: num_minutes % 60
before and after is equivalent functionally. Thus, remove the meaningless part of before.