정규식2 2018 KAKAO BLIND RECRUITMENT > 파일명 정렬 - Python, 정규식 https://school.programmers.co.kr/learn/courses/30/lessons/17686 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 코드 & 풀이 import redef solution(files): cuted_files = [] for i, file in enumerate(files): cuted_file = re.findall(r'[^0-9]+|\d+',file) #문자와 숫자를 기준으로 분리 HEAD = cuted_file[0].lower() # HEAD 소문자, 대문자 구분없으니까 다 소문자로 N.. 2025. 1. 7. 2018 KAKAO BLIND RECRUITMENT > 다트 게임 - Pyton, re, compile, findall, 정규식 https://school.programmers.co.kr/learn/courses/30/lessons/17682 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 코드def solution(dartResult): num = "" score = [] bonus = {"S":1, "D":2, "T":3} for round in dartResult: if round.isdigit(): num += round elif round in bonus: score.append(int(num) ** bonus[round].. 2024. 12. 6. 이전 1 다음