Skip to content

Commit a3a71d2

Browse files
committed
Removed an unused function
1 parent be2ab89 commit a3a71d2

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

maths/polynomials/legendre.py

-10
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,6 @@ def legendre(n: int) -> list[float]:
2323
return p.deriv(n).coef.tolist()
2424

2525

26-
def jsp():
27-
print(legendre(1))
28-
print(legendre(2))
29-
print(legendre(3))
30-
print(legendre(4))
31-
32-
33-
jsp()
34-
35-
3626
def test_legendre_0():
3727
"""Test the 0th Legendre polynomial."""
3828
assert legendre(0) == [1.0], "The 0th Legendre polynomial should be [1.0]"

0 commit comments

Comments
 (0)