-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathis_valid_string_variant.py
47 lines (34 loc) · 1.17 KB
/
is_valid_string_variant.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the isValid function below.
def isValid(s):
freqCounts = [s.count(char) for char in set(s) ]
print(freqCounts)
if max(freqCounts) - min(freqCounts) == 0: #all frequencies are same
return 'YES'
#If difference between highest count and lowest count is 1
#and there is only one letter with highest count,
#then return 'YES' (because we can subtract one of these
#letters and max=min , i.e. all counts are the same)
elif freqCounts.count(max(freqCounts)) == 1 and max(freqCounts) - min(freqCounts) == 1:
return 'YES'
#If the minimum count is 1
#remove this character, and check whether all the other counts are the same
elif freqCounts.count(min(freqCounts)) == 1:
freqCounts.remove(min(freqCounts))
if max(freqCounts)-min(freqCounts) == 0:
return 'YES'
else:
return 'NO'
else:
return 'NO'
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
s = input()
result = isValid(s)
fptr.write(result + '\n')
fptr.close()