Create a method that categorizes products based on price and weight following specific rules.
Rules:
- If the product is free (price = 0), categorize it as "Digital"
- For products with a price greater than 0:
- If the weight is 0, categorize it as "Digital" (regardless of price)
- If the weight is less than or equal to 1 (kg), categorize it as "Light"
- If the weight is less than or equal to 10 (kg), categorize it as "Regular"
- If the weight is greater than 10 (kg), categorize it as "Heavy"
Examples:
Input: price = 0, weight = 5
Output: "Digital"
Explanation: Free products are always Digital
Input: price = 10, weight = 0.5
Output: "Light"
Explanation: Paid product with weight ≤ 1kg
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.