Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# HumanEval/97
|
||||
# Loki Mode Multi-Agent Solution
|
||||
# Attempts: 1
|
||||
# Passed: True
|
||||
|
||||
def multiply(a, b):
|
||||
"""Complete the function that takes two integers and returns
|
||||
the product of their unit digits.
|
||||
Assume the input is always valid.
|
||||
Examples:
|
||||
multiply(148, 412) should return 16.
|
||||
multiply(19, 28) should return 72.
|
||||
multiply(2020, 1851) should return 0.
|
||||
multiply(14,-15) should return 20.
|
||||
"""
|
||||
return (abs(a) % 10) * (abs(b) % 10)
|
||||
Reference in New Issue
Block a user