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.
Excellent point! This solution doesn't, and fails tests where over/under flow is a concern.
Filtering entries that may cause issues with s-i then allows the original algorithm to work.
This comment is hidden because it contains spoiler information about the solution
Not entirely sure where you're getting O(n^2) from. Size is O(1), sort is O(nlogn) and array lookup is O(1).
Although, even with this miscalculation, you'd be right in asserting that O(n) solutions do exist.
I am unsure if you have fixed you issue or not, but when I attempt to run your code, I get this: no viable conversion from 'std::string' (aka 'basic_string') to 'pair<std::string, std::string>' (aka 'pair<basic_string, basic_string >')
pair<string,string> actual = capitalize(s);
Why?
The reason for this is because your function, which you have named capitalize; does not match it's output with what the test requires. The test requires an output of std::pair<std::string, std::string>, not simple an std::string.
write more about duplicates we dont understand it at first time
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Yeah that's my bad. Sorry.
Please, use spoiler flag next time.
This comment is hidden because it contains spoiler information about the solution
Chars can be interpretted as arrays when doing arithmetic. Thus when you're attempting to sum digits as chars together, you're summing the integer value of the characters, not the actual digits. - '0' subtracts the int value of '0' from the int value of the character being popped, giving you the actual value you want as an integer.