5. Suppose we have a list V where each element represents the visit dates for a particular patient in the las* month. We want to calculate the highest number of visits made by any patient. Write a function MVisit(Lst) to do this.
A sample list (V) is shown below : V = [[2, 6], [3, 10], [15], [23], [1, 8, 15, 22, 29], [14]] For the above given list V, the function MVisit( ) should return the result as [1, 8, 15, 22, 29]. # Code V = [[2, 6], [3, 10], [15], [23], [1, 8, 15, […]