mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
7 lines
157 B
Python
7 lines
157 B
Python
def OptimizeMe(a, b, c):
|
|
return HelperClass().helper_method(a, b, c)
|
|
|
|
|
|
class HelperClass:
|
|
def helper_method(self, a, b, c):
|
|
return a + b + c
|