zoukankan      html  css  js  c++  java
  • 151. Reverse Words in a String(js)

    151. Reverse Words in a String

    Given an input string, reverse the string word by word.

    Example 1:

    Input: "the sky is blue"
    Output: "blue is sky the"
    Example 2:

    Input: "  hello world!  "
    Output: "world! hello"
    Explanation: Your reversed string should not contain leading or trailing spaces.
    Example 3:

    Input: "a good   example"
    Output: "example good a"
    Explanation: You need to reduce multiple spaces between two words to a single space in the reversed string.
     

    Note:

    A word is defined as a sequence of non-space characters.
    Input string may contain leading or trailing spaces. However, your reversed string should not contain leading or trailing spaces.
    You need to reduce multiple spaces between two words to a single space in the reversed string.

    题意:给定一个句子,反转句子的单词,首尾空格剔除,单词间空格保持一个空格

    代码如下:

    /**
     * @param {string} s
     * @return {string}
     */
    var reverseWords = function(s) {
    //     通过空格切割字符串
        let sarr=s.split(' ');
        let arr=[];
        for(let i=0;i<sarr.length;i++){
    //         将空字符串项全部筛除
            if(sarr[i]!==''){
                arr.unshift(sarr[i]);
            }
        }
    //     通过空格合并数组项
        return arr.join(' ');
    };
  • 相关阅读:
    hrbust1841再就业(状态压缩dp)
    并查集 poj2236
    JavaScript 常用单词整理
    HTML/CSS 常用单词整理
    HTML/CSS 知识点
    JavaScript 知识点
    ArcGIS裁剪影像数据
    小小程序员
    ArcGIS平面阴影制作
    前端相关的seo技术
  • 原文地址:https://www.cnblogs.com/xingguozhiming/p/11223050.html
Copyright © 2011-2022 走看看