[백준] #2441 별 찍기 - 4 python
2023. 1. 18. 06:00
https://www.acmicpc.net/problem/2441
📕 설명 📕
아주 쉬운 별 찍기 문제
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
for i in range(N):
print(" "*i+"*"*(N-i))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2446 별 찍기 - 9 python (0) | 2023.01.20 |
---|---|
[백준] #2442 별 찍기 - 5 python (0) | 2023.01.19 |
[백준] #2747 피보나치 수 python (0) | 2023.01.17 |
[백준] #1075 나누기 python (0) | 2023.01.16 |
[백준] #10886 0 = not cute / 1 = cute python (0) | 2023.01.15 |