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 account

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

Note

You can test your code by connecting to Salesforce, but to save your progress and earn points, you'll need to create an account. Your solutions and achievements will be tracked automatically once you're logged in.