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
produces an semantically incorrect algorithm as the result of is_empty is used directly for determining, whether another recursion step is necessary, although is ought to be the other way around. For this case, negating the output is required.
The text was updated successfully, but these errors were encountered:
Currently, writing a recursion algorithm like this:
produces an semantically incorrect algorithm as the result of
is_empty
is used directly for determining, whether another recursion step is necessary, although is ought to be the other way around. For this case, negating the output is required.The text was updated successfully, but these errors were encountered: