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.
Input String: ArUYAqjuAuqrujAqAju.
Random Test => assertion failed:
(left == right)
left:1023145616406514156
, right:1023145212402514152
My calculation yielded the value on the right.
In this case 'U' and 'u' do not share the same digit in the expected value(left). One is 2 and the other 6.
Yes, the problem is with actual and expected values, where same letters do not share the same digit regardless of case
I am doing this Kata in Rust and i think there is a problem with the Random tests.
The random test keeps failing but when I test the input string with my soulution it gives the expected answer.
Maybe there is a difference between the test string and the expected string ??
This comment is hidden because it contains spoiler information about the solution