darkprinx / break-the-ice-with-python

The repository is about 100+ python programming exercise problem discussed, explained, and solved in different ways
2.78k stars 1.45k forks source link

Update Day_24.md #100

Open MarcelJonesRaymond opened 3 years ago

MarcelJonesRaymond commented 3 years ago

a=input() c=sorted((set(a))) for i in c[::-1]: print("{} {}".format(i,a.count(i)))