728x90 반응형 📌 Language37 [Swift] keyword를 이용해서 검색하는 법 코드를 붙여넣을 수 있다는 걸 처음 알았다. let recipes = ["Put eggs in a frying pan", "Cut the beef", "Boil the beef"] let keyword = "beef" func search(recipes:[String],keyword:String) -> [String]{ var foundRecipes = [String]() for recipe in recipes{ if recipe.contains(keyword) == true { foundRecipes.append(recipe) } } return foundRecipes } var a = search(recipes: recipes, keyword: "egg") 내가 생각한 핵심은 contains와 app.. 2019. 12. 5. 이전 1 2 3 4 다음 728x90 반응형