Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# HumanEval/52
|
||||
# Loki Mode Multi-Agent Solution
|
||||
# Attempts: 1
|
||||
# Passed: True
|
||||
|
||||
def below_threshold(l: list, t: int):
|
||||
"""Return True if all numbers in the list l are below threshold t.
|
||||
>>> below_threshold([1, 2, 4, 10], 100)
|
||||
True
|
||||
>>> below_threshold([1, 20, 4, 10], 5)
|
||||
False
|
||||
"""
|
||||
return all(x < t for x in l)
|
||||
Reference in New Issue
Block a user