Thursday, April 14, 2016

30 Days of Code Challenges : (Day 1) Data Types

--------------------------------------------------------------------
i = 4
d = 4.0
s = 'HackerRank '
.........................................
k=int(input())
u=float(input())
l=raw_input()
print k+i
print u+d
print s+l
--------------------------------------------------------------------

No comments:

Post a Comment

Two Sum

Given an array of integers, return indices of the two numbers such that they add up to specific target. You may assume that each input w...