일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- nav2 getting started
- first-time robot setup guide
- Nav2 document
- nav2 dev contatiner
- ros2 튜토리얼 환경설정
- humble development guides
- nav2 development guides
- nav2 development guides
- foxy nav2
- ros2 remapping
- Python
- 코드업
- error
- humble 환경설정
- development guides
- nav2 first-time robot setup guide
- CodeUp
- ROS FOXY 튜토리얼
- ros2 development guides
- ros2 환경설정
- CODEUP 6073
- docker foxy
- ros2 foxy docker
- ros2 configuring environment
- ros2 foxy tutorial
- nav2 tutorial
- nav2 설치
- Foxy tutorial
- ros2 튜토리얼
- nav2 튜토리얼
Archives
- Today
- Total
목록Python 2438 (1)
BAN2ARU
[백준/Python] 2438번 : 별찍기
https://www.acmicpc.net/problem/2438 2438번: 별 찍기 - 1 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제 www.acmicpc.net 풀이 import sys N = int(sys.stdin.readline()) for i in range(1, N+1): print("*"*i) 문자열에 정수를 곱하면 그 정수만큼 문자열이 반복되어짐. 이 원리를 활용하여 "*"라는 문자열을 i번만큼 반복하라는 의미임!
Coding Test/BaekJoon
2022. 5. 2. 00:47