Skip to content

Commit 2f852a3

Browse files
committed
daily
1 parent 9359241 commit 2f852a3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

my-submissions/e2053.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
class Solution:
2+
def kthDistinct(self, arr: List[str], k: int) -> str:
3+
distinct = set()
4+
notdistinct = set()
5+
6+
for s in arr :
7+
if s in notdistinct :
8+
continue
9+
if s in distinct :
10+
distinct.remove(s)
11+
notdistinct.add(s)
12+
else :
13+
distinct.add(s)
14+
15+
16+
if k > len(distinct) :
17+
return ""
18+
19+
for x in arr :
20+
if x not in distinct :
21+
continue
22+
k -= 1
23+
24+
if k <= 0 :
25+
return x
26+
27+
return 'error'

0 commit comments

Comments
 (0)