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.
I created the function in Swift and when i submit my code it passes all test except for "Multiply non-negative bytes with product less than 256". The exact error is 'XCTAssertEqual failed: ("Ã") is not equal to ("ÿ") -'. I saw the other question about code not passing this test so i changed it so my output was returned as a ISO_8859_1
return String(bytes: out_data, encoding: .isoLatin1 )
string but i am still getting exact same error. Any advice about where i have gone wrong would be much appriciated.