Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- PYTHON
- 맥북
- ubuntu
- dacon
- Kaggle
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- 편스토랑
- 프로그래머스
- 편스토랑 우승상품
- 캐치카페
- Docker
- ChatGPT
- 백준
- 더현대서울 맛집
- 파이썬
- Git
- github
- 금융문자분석경진대회
- 우분투
- 자연어처리
- leetcode
- AI 경진대회
- Baekjoon
- 프로그래머스 파이썬
- gs25
- 데이콘
- 코로나19
- programmers
- hackerrank
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1859. Sorting the Sentence (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 leetCode의 1859번 문제인 Sorting the Sentence 입니다.
👨🏻💻 문제 풀이
공백을 기준으로 여러개 이어붙어있는 단어가 주어지면
각 단어 마지막에 붙어있는 숫자를 보고 다시 단어들을 재 정렬한 다음
이를 다시 문장으로 만들어주는 문제입니다.
Input: s = "is2 sentence4 This1 a3"
Output: "This is a sentence"
문장을 공백기준으로 나누는데에는 split을 활용하였고
단어마다 맨 뒤에 있는 숫자만 잘라오는 것은 -1 인덱스를 활용하여 단어에서 숫자를 분리해주었습니다.
그 다음 분리한 숫자를 기준으로 정렬한 뒤에 단어만 모아 다시 join해서 정답을 만들었습니다.
전체 코드는 아래를 참고해주세요.
👨🏻💻 코드 ( Solution )
class Solution:
def sortSentence(self, s: str) -> str:
split_sentence = sorted([(word[:-1], int(word[-1:])) for word in s.split()], key=lambda x: x[1])
sorted_sentence = [word[0] for word in split_sentence]
return " ".join(sorted_sentence)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 1748. Sum of Unique Elements (Python) (0) | 2022.02.05 |
---|---|
[leetCode] 1880. Check if Word Equals Summation of Two Words (Python) (0) | 2022.02.04 |
[leetCode] 2119. A Number After a Double Reversal (Python) (0) | 2022.02.02 |
[leetCode] 2057. Smallest Index With Equal Value (Python) (0) | 2022.02.01 |
[leetCode] 1961. Check If String Is a Prefix of Array (Python) (0) | 2022.01.31 |
Comments