일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ros2 foxy tutorial
- ros2 development guides
- 코드업
- nav2 getting started
- ros2 remapping
- humble development guides
- docker foxy
- ros2 foxy docker
- first-time robot setup guide
- humble 환경설정
- ros2 튜토리얼 환경설정
- ros2 튜토리얼
- nav2 tutorial
- CodeUp
- ros2 환경설정
- nav2 dev contatiner
- foxy nav2
- error
- Python
- nav2 first-time robot setup guide
- ROS FOXY 튜토리얼
- nav2 튜토리얼
- Foxy tutorial
- development guides
- nav2 development guides
- CODEUP 6073
- Nav2 document
- nav2 설치
- nav2 development guides
- ros2 configuring environment
Archives
- Today
- Total
목록codeup 6095 (1)
BAN2ARU
CodeUp 6095번
https://codeup.kr/problem.php?id=6095 [기초-리스트] 바둑판에 흰 돌 놓기(설명)(py) python언어기초100제v1.0 : @컴퓨터과학사랑, 전국 정보(컴퓨터)교사 커뮤니티/연구회 - 학교 정보(컴퓨터)선생님들과 함께 수업/방과후학습/동아리활동 등을 통해 재미있게 배워보세요. - 모든 내용 codeup.kr 답안 (1) a = [[0 for _ in range(19)] for _ in range(19)] n = int(input()) for _ in range(n) : x, y = map(int, input().split()) a[x-1][y-1] = 1 for i in range(19) : for j in range(19) : print(a[i][j], end=' ')..
Coding Test/CodeUp
2022. 4. 8. 00:28