You are given a list which may contain sublists. Your task is to find the depth of the deepest sublist.
[a] = 1 depth[[a]] = 2 depth[[[a]]] = 3 depth, etcdeepest([1, [2, 3], 4, [5, 6]]) β 2
deepest([[[[[[[[[[1]]]]]]]]]]) β 10
deepest([1, 4, [1, 4, [1, 4, [1, 4, [5]]]]]) β 5
N/A