https://www.youtube.com/playlist?list=PLpGHT1n4-mAsxuRxVPv7kj4-dQYoC3VVu
https://cs193p.sites.stanford.edu/
4 emojis
var emojis = ["🚗","🚕","🚙", "🚌"]
24 vehicales
var emojis = [
"🚲", "🚂", "🚁", "🚜", "🚕", "🏎",
"🚑", "🚓", "🚒", "✈️", "🚀", "⛵️",
"🛸", "🛶", "🚌", "🏍", "🛺", "🚠",
"🛵", "🚗", "🚚", "🚇", "🛻", "🚝",
]
// EmojiArt > PaletteStore.swift
func palette(at index: Int) -> Palette {
let safeIndex = min(max(index, 0), palettes.count - 1) // <- smart
return palettes[safeIndex]
}