Write a function that sorts list of numbers and returns top element
Topic: Write a function that sorts list of numbers and returns top element
Solution
def biggest_no(l:list)->int: sorted(l)
List all Python Programs
Solution
def biggest_no(l:list)->int: sorted(l)