Polynomials
-
Practice>Python>Numpy>Polynomialshackerrank.com 2019. 4. 25. 12:48
hackerrank.com Polynomials Problem Link : https://www.hackerrank.com/challenges/np-polynomials/problem Difficulty : Easy Tip polyval() should be used to solve problem Solution import numpy as np print(np.polyval(list(map(float,input().split())), float(input())))