Tagged Questions
2
votes
5answers
280 views
Is there a standard name for this function?
What would you name a function that takes a list and a function, and returns True if applying the function to all elements gives the same result?
def identical_results(l, func):
if len(l) <= ...