Create a method that categorizes products based on price and weight following specific rules.

Rules:

  1. If the product is free (price = 0), categorize it as "Digital"
  2. 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!

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

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.