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
- 프로그래머스
- gs25
- Git
- 우분투
- 자연어처리
- 데이콘
- ubuntu
- github
- Docker
- hackerrank
- ChatGPT
- 캐치카페
- 프로그래머스 파이썬
- 더현대서울 맛집
- 백준
- 파이썬
- PYTHON
- Kaggle
- Baekjoon
- 편스토랑 우승상품
- dacon
- AI 경진대회
- SW Expert Academy
- 편스토랑
- leetcode
- Real or Not? NLP with Disaster Tweets
- 맥북
- programmers
- 금융문자분석경진대회
- 코로나19
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 11784번 : Hex Code (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Hex Code 입니다.
👨🏻💻 코드 ( 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
'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