Fix: Ensure all skills are tracked as files, not submodules
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# HumanEval/27
|
||||
# Loki Mode Multi-Agent Solution
|
||||
# Attempts: 1
|
||||
# Passed: True
|
||||
|
||||
def flip_case(string: str) -> str:
|
||||
""" For a given string, flip lowercase characters to uppercase and uppercase to lowercase.
|
||||
>>> flip_case('Hello')
|
||||
'hELLO'
|
||||
"""
|
||||
return string.swapcase()
|
||||
Reference in New Issue
Block a user