diff options
Diffstat (limited to 'progs/a843.py')
-rw-r--r-- | progs/a843.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/progs/a843.py b/progs/a843.py new file mode 100644 index 0000000..0f192b7 --- /dev/null +++ b/progs/a843.py @@ -0,0 +1,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
\ No newline at end of file |