mirror of
https://github.com/ejeanboris/MDAF.git
synced 2025-06-21 20:48:29 +00:00
11 lines
204 B
Python
11 lines
204 B
Python
def main(args):
|
|
'''
|
|
|
|
#_# dimmensions: 0
|
|
'''
|
|
result = 0
|
|
for i,x in enumerate(args[0:-1]):
|
|
result += (x**2)**(args[i+1]**2+1) + (args[i+1]**2)**(x**2 + 1)
|
|
|
|
return result
|