Kth Distinct String in an Array - Problem
A distinct string is a string that is present only once in an array.
Given an array of strings arr, and an integer k, return the kth distinct string present in arr. If there are fewer than k distinct strings, return an empty string "".
Note: The strings are considered in the order in which they appear in the array.
Input & Output
Example 1 — Basic Case
$
Input:
arr = ["d","b","c","b","c","a"], k = 2
›
Output:
"a"
💡 Note:
The distinct strings are "d" and "a" (appear only once). The 2nd distinct string is "a".
Example 2 — Not Enough Distinct
$
Input:
arr = ["aaa","aa","a"], k = 1
›
Output:
"aaa"
💡 Note:
All strings are distinct (each appears once). The 1st distinct string is "aaa".
Example 3 — No kth Distinct
$
Input:
arr = ["a","b","a"], k = 3
›
Output:
""
💡 Note:
Only "b" is distinct (appears once). Since k=3 but there's only 1 distinct string, return empty string.
Constraints
- 1 ≤ k ≤ arr.length ≤ 1000
- 1 ≤ arr[i].length ≤ 5
- arr[i] consists of lowercase English letters
Visualization
Tap to expand
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code