Skip to content

Commit

Permalink
[BOJ] 2442(#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed Jun 1, 2022
1 parent 0e130f9 commit 4a29175
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions BOJ/2442.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# BOJ 2442 브론즈3
# 입출력 구현

n = int(input())

for i in range(1, n+1):
print(' ' * (n-i) + '*' * i + '*' * (i-1))

0 comments on commit 4a29175

Please sign in to comment.