21 lines
664 B
Python
21 lines
664 B
Python
# HumanEval/146
|
|
# Loki Mode Multi-Agent Solution
|
|
# Attempts: 1
|
|
# Passed: True
|
|
|
|
def specialFilter(nums):
|
|
"""Write a function that takes an array of numbers as input and returns
|
|
the number of elements in the array that are greater than 10 and both
|
|
first and last digits of a number are odd (1, 3, 5, 7, 9).
|
|
For example:
|
|
specialFilter([15, -73, 14, -15]) => 1
|
|
specialFilter([33, -2, -3, 45, 21, 109]) => 2
|
|
"""
|
|
odd_digits = {'1', '3', '5', '7', '9'}
|
|
count = 0
|
|
for num in nums:
|
|
if num > 10:
|
|
s = str(num)
|
|
if s[0] in odd_digits and s[-1] in odd_digits:
|
|
count += 1
|
|
return count |