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
'īu should output 300 because ī has a unicode value of 300. u takes a string and uncompresses it to a number, while c compresses a number to a string. I don't know if the latter is needed. Here is the Java implementation.
The text was updated successfully, but these errors were encountered:
Well, Unicode isn't supported yet. C deals with stuff on a per-byte basis, and O follows that. And changing char to wchar_t will print garbage on Linux. :/
'īu
should output300
becauseī
has a unicode value of 300.u
takes a string and uncompresses it to a number, whilec
compresses a number to a string. I don't know if the latter is needed. Here is the Java implementation.The text was updated successfully, but these errors were encountered: