Filter a map of String keys and Integer values, returning only entries where the value falls within a specified minimum and maximum range (inclusive).
Examples:
Input:
map = {"Product1": 100, "Product2": 200, "Product3": 50, "Product4": 300}
min = 100
max = 250
Output: {"Product1": 100, "Product2": 200}
Explanation: Only "Product1" and "Product2" have values between 100 and 250 inclusive
Input:
map = {"Score1": 60, "Score2": 80, "Score3": 95}
min = 0
max = 70
Output: {"Score1": 60}
Explanation: Only "Score1" has a value between 0 and 70 inclusive
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.