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 f6da184 commit 34f97ecCopy full SHA for 34f97ec
Numpy/Polynomials/Solution.py
@@ -0,0 +1,5 @@
1
+import numpy as np
2
+
3
+poly = [float(x) for x in input().split()]
4
+x = float(input())
5
+print(np.polyval(poly, x))
0 commit comments