Calculate the area and circumference of a circle given its radius. Return a Map with keys 'area' and 'circumference'.
Examples:
Input: radius = 5
Output: {'area': 78.54, 'circumference': 31.42}
Explanation: Area = π × r² = 3.14159 × 5² ≈ 78.54, Circumference = 2 × π × r = 2 × 3.14159 × 5 ≈ 31.42
Input: radius = 0
Output: {'area': 0, 'circumference': 0}
Explanation: Both area and circumference are 0 when radius is 0
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.