[백준] #2446 별 찍기 - 9 python
2023. 1. 20. 06:00
https://www.acmicpc.net/problem/2446
📕 설명 📕
더 응용 별 찍기 문제
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
for i in range(N, 0, -1):
print(" " * (N - i) +"*" * (2 * i - 1))
for i in range(2, N + 1):
print(" " * (N - i) +"*" * (2 * i - 1))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2476 주사위 게임 python (0) | 2023.01.22 |
---|---|
[백준] #2455 지능형 기차 python (0) | 2023.01.21 |
[백준] #2442 별 찍기 - 5 python (0) | 2023.01.19 |
[백준] #2441 별 찍기 - 4 python (0) | 2023.01.18 |
[백준] #2747 피보나치 수 python (0) | 2023.01.17 |