Examples :
Input: [2, 3, 1, 4, 5] Output: True Input: [1, 2, 3, 5, 6] Output: False
Let’s discuss several ways we can accomplish this task.
Approach # 1: with sorted()
This approach uses sorted ()
Python. We compare the sorted list with the list of the minimum and maximum integer range of the list and return it.
|
Exit :
True
Approach # 2 Usage numpy.diff()
The Numpy module provides a diff ()
function that computes the nth discrete difference along a given axis. We find the iterative difference of the sorted list and check if it is equal to 1.
|
Exit :
True