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!
Create an Account
Sign up to track your progress, earn points, and compete with others. Your solutions will be saved automatically.
Create accountHow 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 Feb 2026
Contest runs February 1 - 28. Complete challenges to climb the leaderboard!
Points are calculated for challenges completed during the contest period.