본문 바로가기

두두의 알고리즘/문제

[기타] 릿코드 Easy 1816 'Truncate Sentence' (Python)

728x90

<문제 링크>

https://leetcode.com/problems/truncate-sentence/

 

Truncate Sentence - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com


<문제 풀이>

  1. 띄어쓰기로 문자열을 구분한다.
  2. 순서대로 k 수의 단어를 구한다.
  3. 단어별 띄어쓰기 구분으로 문자열을 만든다.

<코드>

class Solution:
    def truncateSentence(self, s: str, k: int) -> str:
        s = s.split(' ')
        return ' '.join(s[:k])