Ad
  • Custom User Avatar

    (Using C++) had the same, my issue was the use of sizeof(inputStr) to get the lenght of the string. sizeof() only returns a maximal count of 32, if a string was longer thant 32 characters the test cases would fail. I then switched to inputStr.length() which ended up working fine. Hope that helps.