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
In section 16.2, the function add_time has sum as local variable. But sum is a built-in function.
This may work but it might be considered as a bad habit to use built-in function names as variable names.
I guess that sum can be replaced, in this particular context, by totaltime (or simply total).
The text was updated successfully, but these errors were encountered:
In section 16.2, the function
add_time
hassum
as local variable. Butsum
is a built-in function.This may work but it might be considered as a bad habit to use built-in function names as variable names.
I guess that
sum
can be replaced, in this particular context, bytotaltime
(or simplytotal
).The text was updated successfully, but these errors were encountered: