1 <= word.length <= 250 word 由英文小写字母组成 ch 是英文小写字母 样例 思路:模拟 按照题意找到第一个 ch 后,翻转前缀串即可。 时间复杂度:O(n) 需要遍历 word 中全部 O(n) 个字母 空间复杂度:O(n) 需要生成长度为 O(n) 的结果串 代码(Python3) class Solution: def reversePrefix(self, word...
https://leetcode-cn.com/problems/reverse-prefix-of-word/ 问题描述 给你一个下标从 0 开始的字符串 word 和一个字符 ch 。找出 ch 第一次出现的下标 i ,反转 word 中从下标 0 开始、直到下标 i 结束(含下标 i )的那段字符。如果 word 中不存在字符 ch ,则无需进行任何操作。 例如,如果 word = ...
Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order. Example 1: Input: “Let’s take LeetCode contest” Output: “s’teL ekat edoCteeL tsetnoc” Note: In the string, each word is separated b...