LeetCode Algorithm 2000. 反转单词前缀

Posted Alex_996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 2000. 反转单词前缀相关的知识,希望对你有一定的参考价值。

2000. 反转单词前缀

Ideas

Python可以直接通过index定位ch的索引,然后前半部分通过切片和[::-1]进行翻转,后半部分通过切片直接拼接。

Code

Python

class Solution:
	def reversePrefix(self, word: str, ch: str) -> str:
		return word if ch not in word else word[:word.index(ch) + 1][::-1] + word[word.index(ch) + 1:]

以上是关于LeetCode Algorithm 2000. 反转单词前缀的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Algorithm

LeetCode Algorithm 414. 第三大的数

LeetCode Algorithm 169. 多数元素

LeetCode Algorithm 217. 存在重复元素

LeetCode Algorithm 242. 有效的字母异位词

LeetCode Algorithm 1669. 合并两个链表