Create a function which takes a parameter n and returns a function such that it, when called n times, returns the string "innokodakademija".
lambda_depth(0) ➞ "innokodakademija"
lambda_depth(1)() ➞ "innokodakademija"
lambda_depth(2)()() ➞ "innokodakademija"
type(lambda_depth(2)()) ➞ <class: "function">
num will always be a non-negative integer.num == 0, return "innokodakademija".num > 0, return a function.lambda_depth(k), after being called k times, returns a string, and checking whether lambda_depth(k) returns a function.