Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# HumanEval/45
|
||||
# Loki Mode Multi-Agent Solution
|
||||
# Attempts: 1
|
||||
# Passed: True
|
||||
|
||||
def triangle_area(a, h):
|
||||
"""Given length of a side and high return area for a triangle.
|
||||
>>> triangle_area(5, 3)
|
||||
7.5
|
||||
"""
|
||||
return (a * h) / 2
|
||||
Reference in New Issue
Block a user