1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cs/kth-distinct-string-in-an-array.cs

22 lines
501 B
C#
Raw Normal View History

public class Solution {
public string KthDistinct(string[] arr, int k) {
var uniqueWords = arr.ToHashSet();
var freqs = uniqueWords.ToDictionary(key => key, key => arr.Count(w => w == key));
var (i, found) = (0, 0);
for (; i < arr.Length && found < k; ++i) {
if (freqs[arr[i]] != 1) {
continue;
}
++found;
}
if (found < k) {
return "";
}
return arr[i - 1];
}
}