Question: Use the starter code down below. -- - -- - - - - Exercise 2: Write a function which takes as input a list of
Use the starter code down below.

-- - -- - - - -

![import List, Any def exercise2(data: List[List[Any]]) -> Any: INI param data: input](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f30423e5911_33966f3042384799.jpg)
Exercise 2: Write a function which takes as input a list of lists, and returns the minimal element of any list. from typing import List, Any def exercise2(data: List[List[Any]]) -> Any: INI param data: input - a 2d list return: minimal element of any sublist III Exercise 3: Write a function that takes a list (containing basic, like types) as input, and returns the list without any duplicate entries. from typing import List, Any def exercise3(data: List[Any]) -> List[Any]: param data: a list of basic types return: `data`, with duplicates removed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
