How do you count the number of times each value appears in an array of integers? [0, 5, 4, 0, 4, 4, 3, 0, 0, 5, 2, 1, 1, 9] answer should be array([4, 2, 1, 1, 3, 2, 0, 0, 0, 1]) which means 0 comes 4 times, 1 comes 2 times, 2 comes 1 time, 3 comes 1 time and so on.
Answers
Answered by
0
yes your answer is right
Similar questions