在 Python 中检查字符串是否相互旋转的程序

假设我们有两个英文字符串 s 和 t,它们可以是小写和/或大写。我们必须检查一个是否是另一个的旋转。

因此,如果输入类似于 s = "koLKAta" t = "KAtakoL",那么输出将为 True

示例

让我们看看以下实现以获得更好的理解 -

def solve(s, t):

   if len(s) != len(t):

      return False

   s = s + s

   return True if s.find(t) != -1 else False

s = "koLKAta"

t = "KAtakoL"

print(solve(s, t))

输入

"koLKAta", "KAtakoL"
输出结果
True

以上是 在 Python 中检查字符串是否相互旋转的程序 的全部内容, 来源链接: utcz.com/z/355817.html

回到顶部