This question runs in a pre-configured Salesforce environment - no personal connection required.

Create a comprehensive analysis of accounts by type using SOQL aggregation. Return a Map where the key is the account type and the value is another Map containing count, total revenue, and average revenue for that type. Only include types with at least one account.

Examples:

Input: None (method queries all accounts) Output: { 'Customer' => { 'count' => 24, 'totalRevenue' => 125000000.00, 'averageRevenue' => 5208333.33 }, 'Prospect' => { 'count' => 6, 'totalRevenue' => 90000000.00, 'averageRevenue' => 15000000.00 } } Explanation: Groups accounts by type with statistics Input: When no accounts exist Output: {} Explanation: Returns empty map when no data
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.