일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ros2 튜토리얼
- ROS FOXY 튜토리얼
- error
- Foxy tutorial
- nav2 development guides
- ros2 foxy tutorial
- nav2 튜토리얼
- ros2 foxy docker
- ros2 development guides
- 코드업
- nav2 development guides
- CODEUP 6073
- development guides
- humble 환경설정
- ros2 튜토리얼 환경설정
- nav2 first-time robot setup guide
- foxy nav2
- CodeUp
- ros2 환경설정
- first-time robot setup guide
- ros2 configuring environment
- nav2 dev contatiner
- humble development guides
- Python
- docker foxy
- nav2 tutorial
- nav2 설치
- ros2 remapping
- Nav2 document
- nav2 getting started
Archives
- Today
- Total
목록python 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