def solution(strings, n):
answer = []
answer_s = []
for i in strings:
answer_s.append(i[n]+i)
answer_s = sorted(answer_s)
for i in answer_s:
answer.append(i[1:])
return answer
'Coding Test > Programmers_Python' 카테고리의 다른 글
[프로그래머스/python] 이상한 문자 만들기 (0) | 2020.07.29 |
---|---|
[프로그래머스/python] 문자열 내림차순으로 배치하기 (0) | 2020.07.28 |
[프로그래머스/python] [1차] 비밀지도 (2018 KAKAO BLIND RECRUITMENT) (0) | 2020.07.28 |
[프로그래머스/python] 시저 암호 (0) | 2020.07.28 |
[프로그래머스/python] 두 정수 사이의 합 (0) | 2020.07.28 |