For my quiz, I want to get the highest number of all answers. So far it works, but when there are 4 answers and 2 said A is right and two said B is right, then the overall group-result should be WRONG. So I want to find out, if there are more than only one highest elements:
example: Math.max(1,2,3,4) ---> 4 Math.max(2,2,0,0) ---> 2 (I need to know that there are more than one highest elements)
Thanks, Marc