Given a list of integers, find the element that appears most frequently. If two elements appear the same number of times, return the smaller of the two. Return null for null or empty input.
Examples:
Input: nums = [1, 2, 2, 3]
Output: 2
Explanation: 2 appears twice, which is more than any other element
Input: nums = [1, 1, 2, 2]
Output: 1
Explanation: Both 1 and 2 appear twice; return the smaller element, 1
Input: nums = [5]
Output: 5
Explanation: Only one element in the list, return it
Input: nums = [3, 3, 3, 1]
Output: 3
Explanation: 3 appears three times, more than 1
Input: nums = null
Output: null
Explanation: Null input returns null
Apex Code Editor
Welcome to Lightning Challenge!
How It Works
- • Write your solution in the code editor
- • Connect your Salesforce org to test
- • Submit to check if your solution passes
- • Use hints if you get stuck
Contest Alert
🏆 #CodeEveryDay July 2026
Contest runs July 1 - 31. Complete challenges to climb the leaderboard!
Only the 31 daily challenges shown during this contest count toward points. Earlier dailies don't carry over.