Your question is Count Even Number of Ones. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
SAP Concur Expense can represent a sequence of validation flags as integers, where 1 means a rule was triggered and 0 means it was not. Given an array of integers, return True if the array contains an even number of values equal to 1; otherwise, return False.
You must count only values exactly equal to 1. Other integer values do not affect the result. The algorithm should process the array in one pass and use constant extra space.
Implement has_even_ones(flags), where flags is a list of integers. Return a boolean indicating whether the number of occurrences of 1 in flags is even. An empty array contains zero ones, and zero is even.
def has_even_ones(flags):