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.
Strictly speaking, the time complexity of 'stop at 5' would be:
O(min(N, f(k)))
wheref(k)
is the number of elements needed to inspect for the given inputs (implying5 <= f(k) <= N
). This means the 'stop at 5' solution is better in all cases except the worst case.The overhead of checking the count is practically nothing and I struggle to think of a scenario (extremely small dictionaries?) where it isn't worth it to keep the count and stop.
You don't even need the
list(input_)
, it can just beinput_
because strings already behave the same as lists!Imo;
O(N) vs O(N) - in worst case where autocomplete words are at the end of the list, runtime is same for both.
Ω(N) vs Ω(1) - in the best case where the autocomplete words are at the start of the list, it may be worth it to stop looping when we have found 5.
Is it? O(n) versus O(1)? Not?
undocumented issues are not issues. :p
Yes, I realized my mistake, thank you very much. It was necessary to learn more about the peculiarities of the language. 100 iterations, it's so joke, forgot to rewrite)
What language, what error? Impossible to help you with so little information.
There is no error, your code mutates the original list. Read about it.
Some solutions present in Solutions section aren't invalidated (don't know why) but were valid when input mutation wasn't tested.
this kata has a error and I saw solutions, I went back to try agin error