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 builtin_range (vm/src/builtins.rs), the elements of a range are in a vector, thereby taking up O(n) size when iterating over n elements, when this could be O(1) using an iterator.
In
builtin_range(vm/src/builtins.rs), the elements of a range are in a vector, thereby taking up O(n) size when iterating over n elements, when this could be O(1) using an iterator.