Ad
  • Default User Avatar

    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 <~~>.

  • Custom User Avatar

    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?