You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exercise 2, Part 3: The conversion factors between yd and ft to cm are wrong. Should be yd/cm = 1/91.44
Exercise 2, Part 1: round(number, 2) will print 2 significant digits. If they print f"{result:.2f}", this results in 2 decimal places regardless. The wording is wrong. Significant digits isn't what you mean to say. It should probably just say round to 2 digits after the period.
Example:
round(27.10, 2) # 27.1 (correct, because .10 has only 1 significant digit after the decimal separator)num=27.10print(f"{num:.2f}") # 27.10 (still correct, but the very last 0 is redundant)
Exercise "Longest consecutive sequence", the solution_longest_sequence_best is missing the reference solution, and we always get a KeyError when the testsuite is trying to fetch the reference solution's code