# 规律 aabb ;单词 cat cat dog dog ;符合规律 返回true。 def wordPattern(规律: str, 给定字符串: str) : res=给定字符串.split() return list(map(规律.index, 规律))==list(map(res.index,res)) #验证 result=wordPattern("aabb", "cat cat dog dog gg") print(f"符合规律吗:{result}")
标签:规律,res,dog,cat,力扣,符合规律,result,290 From: https://www.cnblogs.com/haha1988/p/17520067.html