Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 1.58 KB

All_Longest_Strings.md

File metadata and controls

39 lines (35 loc) · 1.58 KB

🔷 All longest Strings 🔷

Challenge description

Given an array of strings, return another array containing all of its longest strings.

Example

For inputArray = ["aba", "aa", "ad", "vcd", "aba"], the output should be
solution(inputArray) = ["aba", "vcd", "aba"].

Input/Output

  • [execution time limit] 3 seconds (java)

  • [memory limit] 1 GB

  • [input] array.string inputArray

    A non-empty array.

    Guaranteed constraints:
    1 ≤ inputArray.length ≤ 10,
    1 ≤ inputArray[i].length ≤ 10.

  • [output] array.string

    Array of the longest strings, stored in the same order as in the inputArray.

[Java] Syntax Tips

## Solutions: