HackerRank Python Solution - Built-Ins - Input()

input():
  • In Python, the expression input() is equivalent to eval(raw _input(prompt)).
Code:
 
>>> input()  
1+2
3
>>> company = 'HackerRank'
>>> website = 'www.hackerrank.com'
>>> input()
'The company name: '+company+' and website: '+website
'The company name: HackerRank and website: www.hackerrank.com'
Task:
  • You are given a polynomial P of a single indeterminate (or variable), x.
  • You are also given the values of x and k. Your task is to verify if P(x) = k.
Constraints:
  • All coefficients of polynomial P are integers.
  • x and y are also integers.
Input Format:
  • The first line contains the space-separated values of x and k.
  • The second line contains the polynomial P.
Output Format:
  • Print True if P(x) = k. Otherwise, print False.
Sample Input:

1 4
x**3 + x**2 + x + 1
Sample Output:

True
Explanation:
  • P(1) = 13 + 12 + 1 + 1 = 4 = k Hence, the output is True.
Solution:

x, k = list(map(int,input().split()))

P = eval(input())

print(P==k)
Disclaimer: The problem statement is given by hackerrank.com but the solution is generated by the Geek4Tutorial admin. If there is any concern regarding this post or website, please contact us using the contact form. Thank you!

No comments:

Post a Comment

You might also like

Deploy your Django web app to Azure Web App using App Service - F1 free plan

In this post, we will look at how we can deploy our Django app using the Microsoft Azure app service - a free plan. You need an Azure accoun...