Notice
Recent Posts
Recent Comments
Link
Tags
- JSP
- nginx
- CVE-2014-0094
- PortSwigger
- UnCrackable
- MariaDB
- Directory traversal
- Hackthebox cat
- HacktheBox Mobile
- login form
- Frida
- JAVA ClassLoader 취약점
- HackTheBox
- CVE-2010-1622
- mongoDB
- Xamarin 분석
- XALZ 압축해제
- Android 6.0
- CVE-2022-22965
- xss
- NoSQL
- getCachedIntrospectionResults
- SeeTheSharpFlag
- HackTheBox APKey
- Android Backup
- DOM
- blind sql injection
- UnCrackable level 1
- File Upload
- mstg
Archives
- Today
- Total
목록숫자문자열과 영단어 (1)
끄적끄적
[Programmers] 숫자 문자열과 영단어
문제 URL 더보기 https://programmers.co.kr/learn/courses/30/lessons/81301 def solution(s): dic = {'zero':0,'one':1,'two':2,'three':3,'four':4,'five':5,'six':6,'seven':7,'eight':8,'nine':9} lst = list(dic.keys()) for i in lst: if i in s: s=s.replace(i,str(dic[i])) return int(s)
카테고리 없음
2021. 9. 17. 16:11