Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Hi, maybe my answer came too late. I had the same problem. In toAscii85, if the input string contains only zeros and less than 4 bytes, you should return <
!!> if it only contains one zero, <!!!> for two zeros and <!!!!> for 3 zeros. On the other hand, if n = 0 (string length=0) you must return <~~>.I have this error
toAscii85 () = '<
!!>', expected '<~~>'when fixing I got the following in the same test
toAscii85 () = '<~~>', expected '<
!!>'I am coding in C, any suggestion? Can this be an issue on the test?