跳到主要内容

2744.最大字符串配对数目

链接:2744.最大字符串配对数目
难度:Easy
标签:数组、哈希表、字符串、模拟
简介:请你返回数组 words 中的 最大 匹配数目。

题解 1 - python

  • 编辑时间:2024-01-17
  • 执行用时:44ms
  • 内存消耗:16.88MB
  • 编程语言:python
  • 解法介绍:遍历。
class Solution:
def maximumNumberOfStringPairs(self, words: List[str]) -> int:
return sum(words[i1][::-1] == words[i2] for i1 in range(len(words)) for i2 in range(0, i1))