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
- leetcode
- SW Expert Academy
- hackerrank
- 맥북
- Docker
- github
- Real or Not? NLP with Disaster Tweets
- Kaggle
- ubuntu
- 우분투
- 캐치카페
- 편스토랑
- 코로나19
- AI 경진대회
- gs25
- 파이썬
- Baekjoon
- dacon
- programmers
- 자연어처리
- 프로그래머스
- 프로그래머스 파이썬
- Git
- PYTHON
- 금융문자분석경진대회
- 편스토랑 우승상품
- 더현대서울 맛집
- 데이콘
- 백준
- ChatGPT
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 4378번 : 트ㅏㅊ; (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 트ㅏㅊ; 입니다.
👨🏻💻 코드 ( Solution )
def te_ach(error_str):
correct_str = ""
keyboard_corr_dict = {
"1": "`", "2": "1", "3": "2", "4": "3", "5": "4", "6": "5", "7": "6", "8": "7", "9": "8", "0": "9", "-": "0", "=": "-",
"w": "q", "e": "w", "r": "e", "t": "r", "y": "t", "u": "y", "i": "u", "o": "i", "p": "o", "[": "p", "]": "[", "\\": "]",
"s": "a", "d": "s", "f": "d", "g": "f", "h": "g", "j": "h", "k": "j", "l": "k", ";": "l", "'": ";",
"x": "z", "c": "x", "v": "c", "b": "v", "n": "b", "m": "n", ",": "m", ".":",", "/": ".", " ": " "
}
return keyboard_corr_dict[error_str.lower()].upper()
if __name__ == "__main__":
while True:
try:
for type_word in input():
print(te_ach(type_word), end='')
print()
except:
break
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 2129. Capitalize the Title (Python) (0) | 2022.01.24 |
---|---|
[leetCode] 2114. Maximum Number of Words Found in Sentences (Python) (0) | 2022.01.23 |
[BaekJoon] 1037번 : 약수 (Python) (0) | 2022.01.21 |
[BaekJoon] 2985번 : 세 수 (Python) (0) | 2022.01.20 |
[Programmers] 2022 KAKAO BLIND RECRUITMENT - 주차 요금 계산 (Python) (0) | 2022.01.19 |
Comments