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!
How It Works
- • Write your solution in the code editor
- • This challenge runs without connecting your own org
- • 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.