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.
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?
Yes, this iterates through every element of the list. I don't think the perfomance gained from returning after 5 results is worth it in this case, the algorithm is still of the same time complexity, and I think it looks cleaner this way.
I don't think the perfomance gained from returning after 5 results is worth it in this case, the algorithm is still of the same time complexity, and I think it looks cleaner this way.
Solution is elegant but what about performance? Does this iterate through every element in the list even after 5 are found?
The assignment says the double and triple have to be the same digit
I dont understand how this works. Can someone explain?