Python Taskbook Level 9.10
Write code that will determine the maximum nesting level of a multidimensional list.
Given an arbitrary two-dimensional list:
[
[11, 32, 13, 44, 55],
[31, 42, 53, 66, 75],
[12, 26, 33, 45, 52],
[15, 22, 35, 64, 57],
[21, 52, 32, 44, 38],
]
Find the maximum and minimum elements and swap them.