| 1 | def repeat_counts(n): |
| 2 | if len(n)==1: # checking for the length of n. If it is 1 then returns 1 |
| 3 | return 1 |
| 4 | maxx=c=0 # initializing maxx and c as 0. maxx is used for maximum check and c is used for counting |
nothing calls this directly
no test coverage detected