[leetcode] 557. Reverse Words in a String III
2022/2/25 23:24:57
本文主要是介绍[leetcode] 557. Reverse Words in a String III,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
题目
Given a string s
, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
Example 1:
Input: s = "Let's take LeetCode contest" Output: "s'teL ekat edoCteeL tsetnoc"
Example 2:
Input: s = "God Ding" Output: "doG gniD"
Constraints:
1 <= s.length <= 5 * 104
s
contains printable ASCII characters.s
does not contain any leading or trailing spaces.- There is at least one word in
s
. - All the words in
s
are separated by a single space.
思路
分割字符串为数组,逆转每个元素,再合并数组为字符串。
神奇算法:分割字符串为数组,逆转数组,再合并数组为字符串,再逆转字符串
代码
python版本:
class Solution: def reverseWords(self, s: str) -> str: words=[word[::-1] for word in s.split()] return ' '.join(words) # 神奇算法 class Solution: def reverseWords(self, s: str) -> str: return ' '.join(s.split()[::-1])[::-1]
这篇关于[leetcode] 557. Reverse Words in a String III的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器
- 2025-01-01使用 SVN合并操作时,怎么解决冲突的情况?-icode9专业技术文章分享
- 2025-01-01告别Anaconda?试试这些替代品吧