Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLucien Brun
3,138 Pointshow to solve task 3 of the challenge, remove an element from the dictionary and assign it to a constant?
Hello,
I am currently on task three of the challenge but I am stuck because people are telling me "Make sure you're retrieving a value from the dictionary rather than assigning a string directly" and so I don't know how to do it.
How do you do it?
Thank you for your answers.
// Enter your code below
var iceCream: [String: String] = ["CC" : "Chocolate Chip", "AP" : "Apple Pie", "PB" : "Peanut Butter"]
iceCream["RR"] = "Rocky Road"
let applePie: String? = iceCream.removeValue(forKey: "AP")
1 Answer
James Poetzscher
5,224 Points// For this problem what you want to do is assign the value of AP in the array iceCream to a constant applePie // The Code should look like so
let applePie = iceCream["AP"]
// This retrieves the value associated with the key AP and assigns it to a constant applePie
Lucien Brun
3,138 PointsLucien Brun
3,138 PointsI understand, thank you, it's work !