We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1d79f commit be2ab89Copy full SHA for be2ab89
maths/polynomials/legendre.py
@@ -1,6 +1,9 @@
1
-from numpy.polynomial import Polynomial
+# Imports de bibliothèques standard
2
from math import factorial
3
+
4
+# Imports de bibliothèques tierces
5
import pytest
6
+from numpy.polynomial import Polynomial
7
8
9
def legendre(n: int) -> list[float]:
0 commit comments