https://www.acmicpc.net/problem/2523
n = int(input())
for i in range(1, n+1):
print('*' * i)
for i in range(n-1, 0, -1):
print('*' * i)
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 10996번 - 별 찍기 - 21 (0) | 2020.06.11 |
---|---|
[Python] 백준 2446번 - 별 찍기 - 9 (0) | 2020.06.09 |
[Python] 백준 10817번 - 세 수 (0) | 2020.06.09 |
[Python] 백준 5543번 - 상근날드 (0) | 2020.06.09 |
[Python] 백준 10039번 - 평균 점수 (0) | 2020.06.09 |
댓글