728x90
✨ 풀이과정
1
2
3
|
def solution(strings, n):
answer = sorted(strings,key=lambda strings : (strings[n], strings))
return answer
|
cs |
✔ 체크 포인트
- 구글링을 통해 sorted key 조건 사용법을 알게 되어 적용하였다. 여기서, lambda 조건은 2개 가능❕❕
✨ 다른 사람 풀이
1
2
3
4
5
6
7
8
9
|
def solution(strings, n):
new = []
answer = []
for i in strings:
new.append(i[n]+i)
new.sort()
for i in new:
answer.append(i[1:])
return answer
|
cs |
728x90
'코딩테스트 공부 > 프로그래머스 문제' 카테고리의 다른 글
[Python] 문자열 내림차순으로 배치하기 (0) | 2021.11.11 |
---|---|
프로그래머스 [Python] 문자열 내 p와 y의 개수 (0) | 2021.10.26 |
프로그래머스 [Python] 폰켓몬 (0) | 2021.10.25 |
프로그래머스 [Python] 나누어 떨어지는 숫자 배열 (0) | 2021.10.21 |
프로그래머스 [Python] 소수 만들기 (0) | 2021.10.21 |