6 lines
76 B
Python
6 lines
76 B
Python
|
from scipy.linalg import norm
|
||
|
|
||
|
|
||
|
def test_norm():
|
||
|
assert norm([]) == 0.0
|