Introduction
In Python, we can use the all()
function to check if all elements in a list are truthy. However, sometimes we may want to check if a specific condition is true for every element in the list. In this challenge, you will need to create a function that checks if a provided function returns True
for every element in the list.