mirror of
https://github.com/ejeanboris/MDAF.git
synced 2025-05-01 04:42:39 +00:00
5 lines
118 B
Python
5 lines
118 B
Python
from math import sqrt, fabs
|
|
|
|
|
|
def main(args):
|
|
return 100*sqrt(fabs(args[1]-0.01*args[0]**2))+0.01*fabs(args[0]+10) |