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
hi, I think there's a difference between your implementation and the theoratical aspect of Linked List. Deletion and Insertion must take O(n) time where you are looping in O(n) time
The text was updated successfully, but these errors were encountered:
Hi @deshwalmahesh, what you've pointed out is correct. This implementation is inefficient in that sense, but I don't want to change it here and cause confusion between the code in the video tutorial vs. what's stored in the repo.
hi, I think there's a difference between your implementation and the theoratical aspect of Linked List. Deletion and Insertion must take
O(n)
time where you are looping inO(n)
timeThe text was updated successfully, but these errors were encountered: