یک لیست داده شده است. تابعی بنویسید که یک دیکشنری بازگرداند که نشان دهد هر عنصر چند بار در لیست تکرار شده است.
نمونه ورودی و خروجی
CountRepetitions(["cat", "dog", "cat", "cow", "cow", "cow"]) ➞ {"cow": 3, "cat": 2, "dog": 1}
CountRepetitions([1, 5, 5, 5, 12, 12, 0, 0, 0, 0, 0, 0]) ➞ {0: 6, 5: 3, 12: 2, 1: 1}
CountRepetitions(["Infinity", "null", "Infinity", "null", "null"]) ➞ {"null": 3, "Infinity": 2}
CountRepetitions(["cat", "dog", "cat", "cow", "cow", "cow"]) ➞ {"cow": 3, "cat": 2, "dog": 1}
CountRepetitions([1, 5, 5, 5, 12, 12, 0, 0, 0, 0, 0, 0]) ➞ {0: 6, 5: 3, 12: 2, 1: 1}
CountRepetitions(["Infinity", "null", "Infinity", "null", "null"]) ➞ {"null": 3, "Infinity": 2}
hdgh