class Solution:
def kthDistinct(self, arr: List[str], k: int) -> str:
distinct = []
for c in arr:
if arr.count(c) > 1:
continue
if c not in distinct:
distinct.append(c)
if len(distinct) < k:
return ""
return distinct[k-1]