jmpark0118 / CODING_TEST_PRACTICE

0 stars 0 forks source link

Practice>Python>Math>Triangle Quest #74

Open jmpark0118 opened 3 years ago

jmpark0118 commented 3 years ago

image image

출처 : https://www.hackerrank.com/challenges/python-quest-1/problem

jmpark0118 commented 3 years ago

for i in range(1,int(input())):
    print(int(i*(10**i-1)/9))