📜  三角探索 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:43.296000             🧑  作者: Mango

代码示例1
# Triangle Quest in Python - Hacker Rank Solution
# Python 3

for i in range(1,int(input())): 
#More than 2 lines will result in 0 score. Do not leave a blank line also
# Triangle Quest in Python - Hacker Rank Solution START
    print(int(i * 10**i / 9))
# Triangle Quest in Python - Hacker Rank Solution END