Easy level one
{“questions”:{“g473k”:{“id”:”g473k”,”mediaType”:”image”,”answerType”:”text”,”imageCredit”:””,”image”:””,”imageId”:””,”video”:””,”imagePlaceholder”:””,”imagePlaceholderId”:””,”title”:”Write a function that takes in a list of integers and returns the second highest number.”,”desc”:””,”hint”:””,”answers”:{“1cvez”:{“id”:”1cvez”,”title”:”def second_highest(lst):\r\n lst = list(set(lst))\r\n lst.sort()\r\n return lst[-2] if len(lst) >= 2 else None”,”image”:””,”imageId”:””}}},”zpis1″:{“id”:”zpis1″,”mediaType”:”image”,”answerType”:”text”,”imageCredit”:””,”image”:””,”imageId”:””,”video”:””,”imagePlaceholder”:””,”imagePlaceholderId”:””,”title”:”Write a function that takes in a list of strings and returns a dictionary where the keys are the strings and the values are the lengths of the strings.”,”desc”:””,”hint”:””,”answers”:{“asf8q”:{“id”:”asf8q”,”title”:”def str_lengths(lst):\r\n return {s: len(s) for s in lst}”,”image”:””,”imageId”:””}}}}}