Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- ubuntu
- 맥북
- github
- 더현대서울 맛집
- SW Expert Academy
- Baekjoon
- 편스토랑 우승상품
- ChatGPT
- 편스토랑
- Kaggle
- 자연어처리
- 파이썬
- Git
- Docker
- 코로나19
- 캐치카페
- Real or Not? NLP with Disaster Tweets
- AI 경진대회
- PYTHON
- 데이콘
- hackerrank
- dacon
- 금융문자분석경진대회
- 프로그래머스 파이썬
- 백준
- gs25
- programmers
- leetcode
- 프로그래머스
- 우분투
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 11784번 : Hex Code (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Hex Code 입니다.
11784번: Hex Code
In the movie The Martian (2015), astronaut Mark Watney, one of the crew members of Mission Ares III, was left behind on Mars due to an unexpected incident during the surface exploration on the planet Mars. The communication with Earth was quasi-inexistent.
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def hex_code(code):
return bytearray.fromhex(code).decode()
if __name__ == "__main__":
while True:
try:
code = input()
print(hex_code(code))
except EOFError:
break
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 4714번 : Lunacy (Python) (0) | 2022.08.24 |
---|---|
[BaekJoon] 6778번 : Which Alien? (Python) (0) | 2022.08.23 |
[BaekJoon] 15792번 : A/B - 2 (Python) (0) | 2022.08.21 |
[BaekJoon] 17202번 : 핸드폰 번호 궁합 (Python) (0) | 2022.08.20 |
[BaekJoon] 4969번 : St. Ives (Python) (0) | 2022.08.18 |
Comments