码迷,mamicode.com
首页 > 其他好文 > 详细

翻转字符串里的单词

时间:2020-04-10 14:45:08      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:spl   hid   gif   view   rev   eve   nbsp   https   ring   

试题地址:https://leetcode-cn.com/problems/reverse-words-in-a-string/

试题思路:
go自带strings.Fields()函数,可以剔除多余空格
试题代码:
技术图片
func reverseWords(s string) string {
    strList := strings.Fields(s)
    if len(strList) == 0 {
        return ""
    }
    reverseS := ""
    for i := len(strList) - 1; i > 0; i-- {
        reverseS += strList[i] + " "
    }
    reverseS += strList[0]

    return reverseS
}
View Code

 

翻转字符串里的单词

标签:spl   hid   gif   view   rev   eve   nbsp   https   ring   

原文地址:https://www.cnblogs.com/ybf-yyj/p/12673341.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!