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
The last line of code:
return x
which is not considered if x == L.nil, and then it returns L.nil with L.nil.key = k, and how does the return value differentiate it from the normally found elements?
So we need to check if x == L.nil and if it is then set L.nil.key = NIL to solve the issue.
The text was updated successfully, but these errors were encountered:
The last line of code:
return x
which is not considered if x == L.nil, and then it returns L.nil with L.nil.key = k, and how does the return value differentiate it from the normally found elements?
So we need to check if x == L.nil and if it is then set L.nil.key = NIL to solve the issue.
The text was updated successfully, but these errors were encountered: