Python - Check if List is K increasing
Given a List, check if the next element is always x + K than current(x). Input : test_list = [3, 7, 11, 15, 19, 23], K = 4 Output : True Explanation : Subsequent element difference is 4. Input : test_list = [3, 7, 11, 12, 19, 23], K = 4 Output : False Explanation : 12 - 11 = 1, which is not 4, hence