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
IMHO you could optimize quiet a lot by replacing dictionary.get(x) with dictionary[x] and dictionary.put(x, y) with dictionary[x] = y (both save -9 bytes, -8 after bytecode optimization).
And similarily array.put(x, y) can be replaced with array[x] = y with similar gains.
The text was updated successfully, but these errors were encountered:
IMHO you could optimize quiet a lot by replacing dictionary.get(x) with dictionary[x] and dictionary.put(x, y) with dictionary[x] = y (both save -9 bytes, -8 after bytecode optimization).
And similarily array.put(x, y) can be replaced with array[x] = y with similar gains.
The text was updated successfully, but these errors were encountered: