일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 document
- first-time robot setup guide
- ros2 development guides
- ros2 환경설정
- nav2 development guides
- humble development guides
- CodeUp
- ros2 configuring environment
- ros2 튜토리얼
- nav2 development guides
- ros2 remapping
- nav2 설치
- nav2 dev contatiner
- error
- foxy nav2
- development guides
- nav2 getting started
- nav2 tutorial
- nav2 튜토리얼
- ros2 튜토리얼 환경설정
- 코드업
- docker foxy
- ros2 foxy tutorial
- Python
- nav2 first-time robot setup guide
- ROS FOXY 튜토리얼
- humble 환경설정
- CODEUP 6073
- ros2 foxy docker
- Foxy tutorial
Archives
- Today
- Total
목록파이썬 1110 (1)
BAN2ARU
[백준/Python] 1110번 : 더하기 사이클
1110번: 더하기 사이클 (acmicpc.net) 1110번: 더하기 사이클 0보다 크거나 같고, 99보다 작거나 같은 정수가 주어질 때 다음과 같은 연산을 할 수 있다. 먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자리의 숫자를 더한다. 그 다음, www.acmicpc.net - 코드 (252B) import sys n = int(sys.stdin.readline()) n_new = n count = 0 while (True) : n_first = n_new // 10 n_end = n_new % 10 n_add = n_first + n_end n_new = n_end * 10 + n_add % 10 count += 1 if(n == n_new) : break prin..
Coding Test/BaekJoon
2022. 9. 19. 18:56