📜  allLongestStrings (1)

📅  最后修改于: 2023-12-03 15:13:18.104000             🧑  作者: Mango

函数介绍:allLongestStrings

功能描述

该函数接收一个字符串数组作为参数,并返回所有长度最长的字符串数组。

函数原型
def allLongestStrings(inputArray: List[str]) -> List[str]:
参数说明
  • inputArray:字符串数组
返回值
  • 所有长度最长的字符串数组
示例
input = ["hello", "world", "python", "code", "test"]
allLongestStrings(input)
# Output: ["python", "hello", "world"]
实现思路
  • 先将字符串按长度从大到小排序
  • 查找所有长度等于排序后第一个字符串长度的字符串
  • 返回所有符合条件的字符串数组