Skip to content

Dwashi2/swift-SayHellotoGuests

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

swift-SayHellotoGuests


Swift Study

Project to study Swift 5.4

Table of Contents
  1. About The Project
  2. Getting Started
  3. Contact

About The Project

  In this exercise you will have to:
  
  Take a list of names.
  Add "Hello" to every name.
  Make one big string with all greetings.
  The solution should be one string with a comma in between every "Hello (Name)".
  
  Examples:
  greetPeople(["Joe"]) ➞ "Hello Joe"
  greetPeople(["Angela", "Joe"]) ➞ "Hello Angela, Hello Joe"
  greetPeople(["Frank", "Angela", "Joe"]) ➞ "Hello Frank, Hello Angela, Hello Joe"
  
  Notes:
  Each greeting has to be separated with a comma and a space.
  If you're given an empty array [], return an empty string "".
  
  Excercise from: https://edabit.com/challenges/swift

Getting Started

Open the file SayHellotoGuests.xcodeproj

Prerequisites

  • Xcode 12.4
  • Use iPhone 12 mini as simulator

Contact

Daniel Washington Ignacio - danielvertigo@hotmail.com

Click to access my LinkedIn

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages