2021206 LeetCode刷题 截断句子(难度 :简单)

题目:

  

子 是一个单词列表,列表中的单词之间用单个空格隔开,且不存在前导或尾随空格。每个单词仅由大小写英文字母组成(不含标点符号)。

例如,"Hello World"、"HELLO" 和 "hello world hello world" 都是句子。
给你一个句子 s​​​​​​ 和一个整数 k​​​​​​ ,请你将 s​​ 截断 ​,​​​使截断后的句子仅含 前 k​​​​​​ 个单词。返回 截断 s​​​​​​ 后得到的句子。

 

示例 1:

输入:s = "Hello how are you Contestant", k = 4
输出:"Hello how are you"
解释:
s 中的单词为 ["Hello", "how" "are", "you", "Contestant"]
前 4 个单词为 ["Hello", "how", "are", "you"]
因此,应当返回 "Hello how are you"
示例 2:

输入:s = "What is the solution to this problem", k = 4
输出:"What is the solution"
解释:
s 中的单词为 ["What", "is" "the", "solution", "to", "this", "problem"]
前 4 个单词为 ["What", "is", "the", "solution"]
因此,应当返回 "What is the solution"
示例 3:

输入:s = "chopper is not a tanuki", k = 5
输出:"chopper is not a tanuki"

 

代码:

  

class Solution {
    public String truncateSentence(String s, int k) {
        String[] str = s.split(" ");
        String result = "";
        for(int i=0;i<k;i++){
            result+=str[i]+" ";
        }
        return result.trim();
    }
}

  

执行用时:5 ms, 在所有 Java 提交中击败了14.91%的用户
内存消耗:38.7 MB, 在所有 Java 提交中击败了5.13%的用户
通过测试用例:72 / 72

 

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/truncate-sentence
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

posted @ 2021-12-06 22:33  skystrivegao  阅读(22)  评论(0编辑  收藏  举报