blob: 0f192b7668b7d65adde2680928089238e1e0bd52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
def get_max_occuring_char(str1):
ASCII_SIZE = 256
ctr = [0] * ASCII_SIZE
max = -1
ch = ''
for i in str1:
ctr[ord(i)]+=1;
for i in str1:
if max < ctr[ord(i)]:
max = ctr[ord(i)]
ch = i
return ch
|