Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# HumanEval/15
|
||||
# Loki Mode Multi-Agent Solution
|
||||
# Attempts: 1
|
||||
# Passed: True
|
||||
|
||||
def string_sequence(n: int) -> str:
|
||||
""" Return a string containing space-delimited numbers starting from 0 upto n inclusive.
|
||||
>>> string_sequence(0)
|
||||
'0'
|
||||
>>> string_sequence(5)
|
||||
'0 1 2 3 4 5'
|
||||
"""
|
||||
return ' '.join(str(i) for i in range(n + 1))
|
||||
Reference in New Issue
Block a user