break-the-ice-with-python
break-the-ice-with-python copied to clipboard
The repository is about 100+ python programming exercise problem discussed, explained, and solved in different ways
It says to the program should print a comma-separated sequence yet it also says (and as we all know with common sense) that output should just a single integer. So...
Added a different solution for q53 using find method and slicing.
Added a different solution for Q30
question no 6 had underscore but the multiplication sign would make the meaning more clearer.
a=input() c=sorted((set(a))) for i in c[::-1]: print("{} {}".format(i,a.count(i)))
question 88 use dict
Added Solution Q90
Added Solution to Q59
Added Solution to Q33
Added Solution to Q31