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. -- - -- - - -Use the starter code down below.

- Exercise 2: Write a function which takes as input a list

-- - -- - - - -

of lists, and returns the minimal element of any list. from typingimport List, Any def exercise2(data: List[List[Any]]) -> Any: INI param data: input

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!