aviiciii / cs50python

My problem sets for CS50 Python 2022
MIT License
39 stars 19 forks source link

Problem in pset 1, meal.py #3

Open usergeneratedrandomness opened 7 months ago

usergeneratedrandomness commented 7 months ago

the function convert(time) is supposed to convert inputs like 7:30 to 7.5 but returns 7.05. This is because minutes is divided by 600 essentially converting minuets into seconds. This also fails the check50 cs50/problems/2022/python/meal test. The solution if to divide by 60 in all cases instead of 600.

aviiciii commented 2 months ago

@usergeneratedrandomness i believe that either the tests or the assignment has been updated feel free to open a pr to solve the issue.