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
I reached it when I had 135 characters to sort (which resulted in over 700 sorts).
Seems that with enough "comparisons" [Had many instances where it came to shove it looped; Also I added a boolean and an integer in the mix], it does come to a point where the characters outputted by LZString reach the 2048 character limit set by browsers.
I wonder if it's possible to switch to UTF16 rather than just use ASCII.
EDIT:
On closer inspection it seems that it's the lzstring generating a newline on the result string when it shouldn't. I should probably either check if the libary is up-to-date, or bring it up with them.
The text was updated successfully, but these errors were encountered:
I reached it when I had 135 characters to sort (which resulted in over 700 sorts).
Seems that with enough "comparisons" [Had many instances where it came to shove it looped; Also I added a boolean and an integer in the mix], it does come to a point where the characters outputted by LZString reach the 2048 character limit set by browsers.
I wonder if it's possible to switch to UTF16 rather than just use ASCII.
EDIT:
On closer inspection it seems that it's the lzstring generating a newline on the result string when it shouldn't. I should probably either check if the libary is up-to-date, or bring it up with them.
The text was updated successfully, but these errors were encountered: