Largest Adjacent Difference
[email protected] // 1.0 // type-checkable
Write a function named largest_adjacent_difference
that accepts a list of integers
and returns the largest difference between any two adjacent elements. For example, given [4, 5, 2]
you would return 3 because the difference of 3 (between 5 and 2) is bigger than the difference of 1 (between 4 and 5).
If the list has fewer than 2 elements, return zero.