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.
range(1,len(arr) is to loop through array, starting from index 1 to the last index of array. why do you do this? because you need to check the condition from second index which is index 1 for example: arr[1] - arr[1-1] > 1: imagine if you start from index 0 if it will be like this arr[0] - arr[0-1] or arr[0] - arr[-1]