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 trialRyan Anderson
4,610 PointsCan someone please explain how to do this Challenge Task 2 of 2 correctly?
Not sure what I am doing wrong.
func search(#name: String) -> String? {
let names = ["Doc","Grumpy","Happy","Sleepy","Bashful","Sneezy","Dopey"]
for n in names {
if n == name {
return n
}
}
return nil
}
if let result = search {
println("Found")
}
search(name: "Doc")
1 Answer
Chase Marchione
155,055 PointsHi Ryan,
You'll pass in the name of "Doc" in the call to the search method that you have set to the result constant. This way, when search is called, it'll have the parameter and value of what to search for--and the result of the search will be assigned to our constant named 'result'.
func search(#name: String) -> String? {
let names = ["Doc","Grumpy","Happy","Sleepy","Bashful","Sneezy","Dopey"]
for n in names {
if n == name {
return n
}
}
return nil
}
if let result = search(name: "Doc") {
println("Found")
}
Hope this helps!