Advertisement
david929

Untitled

Apr 10th, 2021
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. big = 0
  2.  
  3. for el in l:
  4.     cont = 0
  5.     for elem in l:
  6.         if elem.lower() == el.lower():
  7.             cont += 1
  8.     if cont > big:
  9.         big = cont
  10.  
  11. return big
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement