728x90
1. Problem: https://py.checkio.org/en/mission/secret-message/
2. My solution
def find_message(message: str) -> str:
# your code here
dummy = '';
for char in list(message):
if char.isupper(): dummy+=char
return dummy
728x90
'프로그래밍 문제 > [Python] CheckIO' 카테고리의 다른 글
[CheckIO/Electronic Station] acceptable-password-ii (0) | 2024.04.07 |
---|---|
[CheckIO/Electronic Station] digits-multiplication (0) | 2024.04.07 |
[CheckIO/Scientific Expedition] striped words (0) | 2024.03.24 |
[CheckIO/Scientific Expedition] Beat The Previous (0) | 2024.03.24 |
[CheckIO/Scientific Expedition] Pangram (0) | 2024.03.24 |
댓글