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
Message queue uses removeFirst(), which is O(n), making the entire process O(n^2). Needs to be simplified to O(n). Also, removeFirst() returns the element, no need to read it off first.
The text was updated successfully, but these errors were encountered:
Message queue uses
removeFirst()
, which is O(n), making the entire process O(n^2). Needs to be simplified to O(n). Also,removeFirst()
returns the element, no need to read it off first.The text was updated successfully, but these errors were encountered: