【2019.07.25 Python每日一题】答案 —— 反转字符串中的单词 III 【Leecode557】

https://leetcode-cn.com/problems/reverse-words-in-a-string-iii/

给定一个字符串,你需要反转字符串中每个单词的字符顺序,同时仍保留空格和单词的初始顺序。

示例 1:

输入: "Let's take LeetCode contest" 输出: "s'teL ekat edoCteeL tsetnoc" 注意:在字符串中,每个单词由单个空格分隔,并且字符串中不会有任何额外的空格。

坨坨的解法:

解法一

s = "Let's take LeetCode contest"
sentence = ''
word = ''
for i in s:
    if i != " ":
        word += i
    else:
        word = word[::-1]
        word += ' '
        sentence += word
        word = ''
sentence += word[::-1] # 最后一个特殊处理
print(sentence)

解法二

#解法二
s = "Let's take LeetCode contest"
word_ls = s.split(' ')
for i in range(len
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值