'python challenge'에 해당되는 글 12건
- 2011.06.21 [Python challenge Level3] – equality (Regular Expression)
- 2011.06.21 [Python challenge Level2] - ocr (특문 속에 알파벳)
- 2011.06.20 [Python challenge Level1] – map (문자 대체)
- 2011.06.20 [Python challenge Level0] - PythonChallenge란?
[ problem ] - http://www.pythonchallenge.com/pc/def/equality.html
♧ 문제의 그림을 보면 3개의 큰 양초와 가운데 작은 양초가 보인다. ♧ 역시 소스페이지를 보면 많은 문자열이 주석처리 되어 있다.
("VVVxVVV" 이처럼 대문자3개와 가운대 소문자 하나가 정확히 매칭 되는 것을 찾아야 한다.)
|
[ Solution ] - http://www.pythonchallenge.com/pcc/def/linkedlist.php
(※ 문제에 대한 다양한 해결법은 링크 참조.)
'워게임(WarGame) > PythonChallenge' 카테고리의 다른 글
[Python challenge Level5] - peak (pickle) (1) | 2011.06.22 |
---|---|
[Python challenge Level4] – linkedlist (urllib) (0) | 2011.06.21 |
[Python challenge Level2] - ocr (특문 속에 알파벳) (0) | 2011.06.21 |
[Python challenge Level1] – map (문자 대체) (0) | 2011.06.20 |
[Python challenge Level0] - PythonChallenge란? (0) | 2011.06.20 |
[ problem ] - http://www.pythonchallenge.com/pc/def/ocr.html
♧ 힌트를 보면 소스 페이지라는 단어가 눈에 띤다.
일단 소스 페이지를 보면 아래와 같은 희귀문자 들이 엉망으로 섞여 있는 것을 볼 수 있다.
이 속에서 알파벳을 찾는 문제이다.
(※ re — Regular expression operations 참조)
[ Solution ] - http://www.pythonchallenge.com/pcc/def/equality.html
(※ 문제에 대한 다양한 해결법은 링크 참조.)
'워게임(WarGame) > PythonChallenge' 카테고리의 다른 글
[Python challenge Level5] - peak (pickle) (1) | 2011.06.22 |
---|---|
[Python challenge Level4] – linkedlist (urllib) (0) | 2011.06.21 |
[Python challenge Level3] – equality (Regular Expression) (0) | 2011.06.21 |
[Python challenge Level1] – map (문자 대체) (0) | 2011.06.20 |
[Python challenge Level0] - PythonChallenge란? (0) | 2011.06.20 |
[ problem ] - http://www.pythonchallenge.com/pc/def/map.html
♧ 그림과 같이 K->M, O->Q, E->G의 규칙성은 해당 문자가 2만큼 떨어져 있다.
그림의 보라색 글자가 무슨 암호화 같이 보이지만 해당 글자를 2씩 증가하면
아래와 같이 string.maketrans() 권장한다는 친절한 멘트와 힌트가 보인다. (단, y->a)
"i hope you didnt translate it by hand. thats what computers are for. |
♧ 현재 url의 "map.html"을 규칙성을 적용해 보면 "orc.jvon"이 된다.
(http://www.pythonchallenge.com/pc/def/ocr.jvon)
[ Solution ] - http://www.pythonchallenge.com/pcc/def/ocr.html
(※ 문제에 대한 다양한 해결법은 링크 참조.)
'워게임(WarGame) > PythonChallenge' 카테고리의 다른 글
[Python challenge Level5] - peak (pickle) (1) | 2011.06.22 |
---|---|
[Python challenge Level4] – linkedlist (urllib) (0) | 2011.06.21 |
[Python challenge Level3] – equality (Regular Expression) (0) | 2011.06.21 |
[Python challenge Level2] - ocr (특문 속에 알파벳) (0) | 2011.06.21 |
[Python challenge Level0] - PythonChallenge란? (0) | 2011.06.20 |
http://www.pythonchallenge.com/index.php
♧ Python 프로그래밍을 여러 수수께끼 문제를 통해 쉽고 재미있게 배울 수 있는 사이트.
♧ 사이트 접속후 아래 "Click here to get challenged"를 클릭하면 도전 시작.
♧ 도전을 시작 하면 아래와 같은 문제 화면이 보인다. |
※ 2의 38승을 구하는 문제이다.
URL 주소란에 그림과 같이 문제의 답을 적으면 다음 레벨로 넘어가게 된다.
[ 문제에 대한 다양한 해결책 보기 ]
위와 같이 URL을 pc->pcc로 고치면 다음 그림과 같이 문제에 대한 여러 해결법을 볼 수 있다. |
[ Solution ] - http://pythonchallenge.com/pcc/def/map.html
'워게임(WarGame) > PythonChallenge' 카테고리의 다른 글
[Python challenge Level5] - peak (pickle) (1) | 2011.06.22 |
---|---|
[Python challenge Level4] – linkedlist (urllib) (0) | 2011.06.21 |
[Python challenge Level3] – equality (Regular Expression) (0) | 2011.06.21 |
[Python challenge Level2] - ocr (특문 속에 알파벳) (0) | 2011.06.21 |
[Python challenge Level1] – map (문자 대체) (0) | 2011.06.20 |