Given a list of Contact records, insert them using Database.insert with allOrNone=false. Return a Map with two keys: "success" containing the count of successfully inserted records, and "failed" containing the count of failed records.
Examples:
Input: contacts = [Contact(LastName='Smith'), Contact(LastName='Jones')]
Output: {'success': 2, 'failed': 0}
Explanation: Both contacts inserted successfully
Input: contacts = []
Output: {'success': 0, 'failed': 0}
Explanation: Empty list results in zero successful and zero failed insertions
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 accountHow 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.