일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 tutorial
- ros2 foxy tutorial
- ROS FOXY 튜토리얼
- nav2 first-time robot setup guide
- foxy nav2
- nav2 튜토리얼
- 코드업
- docker foxy
- nav2 development guides
- ros2 튜토리얼
- development guides
- ros2 foxy docker
- error
- first-time robot setup guide
- Nav2 document
- ros2 튜토리얼 환경설정
- nav2 설치
- ros2 환경설정
- Python
- nav2 development guides
- nav2 dev contatiner
- ros2 development guides
- humble 환경설정
- ros2 remapping
- Foxy tutorial
- nav2 getting started
- CODEUP 6073
- ros2 configuring environment
- CodeUp
- humble development guides
Archives
- Today
- Total
목록코드업 6083 (1)
BAN2ARU
CodeUp 6083번
https://codeup.kr/problem.php?id=6083 [기초-종합] 빛 섞어 색 만들기(설명)(py) 본 문제는 python 의 빠른 기초 학습을 위해 설계된 문제로서 python 코드 제출을 기준으로 설명되어 있습니다. ------ 빨강(red), 초록(green), 파랑(blue) 빛을 섞어 여러 가지 다른 색 빛을 만들어 내려 codeup.kr r, g, b = map(int, input().split()) count = 0 for x in range(0, r) : for y in range(0, g) : for z in range (0, b) : print(x,y,z) count += 1 print(count)
Coding Test/CodeUp
2022. 3. 9. 18:17