Meta Interview Question

Python Question: function that pulls list and compares to parameter with amount. Display the total # of elements in the list with a total value less than the amount.

Interview Answer

Anonymous

Apr 20, 2022

Did a for loop , adding each item to a new list and , creating a total to check against the amount.