gpt4 book ai didi

python - Hackerrank Quest——错误还是误解?

转载 作者:行者123 更新时间:2023-11-28 22:41:37 25 4
gpt4 key购买 nike

<分区>

我在玩 Hackerrank 时遇到了 this problem .

写成:

You are given a positive integer N. You have to print a numerical triangle of height N−1 as shown below:

1
22
333
4444
55555
......

我的直接想法是这个解决方案:

for i in range(1,input()):
print(str(i)*i)

输出给定的 (5) 作为第一行输入:

1
22
333
4444

提交说这是不对的。其他被接受的建议在我看来就没那么优雅了:

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

这个输出:

1
22
333
4444

输出是相同的,但代码很丑陋。为什么这个解决方案可以接受而不是我的?

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com