URI 2993 Solution

URI 2993 - Most Frequent


1
2
3
4
5
6
SELECT amount
FROM value_table
GROUP BY amount
ORDER BY COUNT(amount) DESC
LIMIT 1
;

Comments

Popular posts from this blog

URI 2994 Solution

URI 2996 Solution