Skip to content

Instantly share code, notes, and snippets.

@geek1706
Created July 29, 2018 13:09
Show Gist options
  • Save geek1706/8c48cca42e0dee6748c4b7b52bd9a46d to your computer and use it in GitHub Desktop.
Save geek1706/8c48cca42e0dee6748c4b7b52bd9a46d to your computer and use it in GitHub Desktop.
//: Playground - noun: a place where people can play
import UIKit
var str = "Hello, playground"
let students = ["Kofi", "Abena", "Efua", "Kweku", "Akosua"]
let studentsByLetter = Dictionary(grouping: students, by: { $0.first! })
print(studentsByLetter)
// ["E": ["Efua"], "K": ["Kofi", "Kweku"], "A": ["Abena", "Akosua"]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment