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 |
Tags
- 파이썬
- Real or Not? NLP with Disaster Tweets
- ChatGPT
- programmers
- AI 경진대회
- Kaggle
- 프로그래머스
- 프로그래머스 파이썬
- 캐치카페
- 더현대서울 맛집
- 편스토랑
- 맥북
- 편스토랑 우승상품
- ubuntu
- gs25
- SW Expert Academy
- 데이콘
- Git
- 백준
- hackerrank
- Baekjoon
- Docker
- 코로나19
- 자연어처리
- github
- PYTHON
- 금융문자분석경진대회
- leetcode
- 우분투
- dacon
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