Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
# HumanEval/83
|
||||
# Loki Mode Multi-Agent Solution
|
||||
# Attempts: 1
|
||||
# Passed: True
|
||||
|
||||
def starts_one_ends(n):
|
||||
"""
|
||||
Given a positive integer n, return the count of the numbers of n-digit
|
||||
positive integers that start or end with 1.
|
||||
"""
|
||||
if n == 1:
|
||||
return 1
|
||||
return 18 * (10 ** (n - 2))
|
||||
Reference in New Issue
Block a user