# return sum_of_list(lst)+ lst.pop() #this gives error(maximum recursion depth reached) as it enters infinite loop return lst.pop()+sum_of_list(lst) ...
# Given a list of numbers, return True if the sum of the values in the list is less than 100; otherwise return False.
Some results have been hidden because they may be inaccessible to you
Show inaccessible results