5 lines
No EOL
66 B
Python
5 lines
No EOL
66 B
Python
def f(L):
|
|
U = []
|
|
for i in L:
|
|
U.append(i**2 - 1)
|
|
return U |