Skip to content

takagisou/CS193p-Spring-2021

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS193P Spring 2021

https://www.youtube.com/playlist?list=PLpGHT1n4-mAsxuRxVPv7kj4-dQYoC3VVu

Homework

https://cs193p.sites.stanford.edu/

Lecture 2

4 emojis

var emojis = ["🚗","🚕","🚙", "🚌"]

24 vehicales

var emojis = [
    "🚲", "🚂", "🚁", "🚜", "🚕", "🏎",
    "🚑", "🚓", "🚒", "✈️", "🚀", "⛵️",
    "🛸", "🛶", "🚌", "🏍", "🛺", "🚠",
    "🛵", "🚗", "🚚", "🚇", "🛻", "🚝",
]

Lecture 11

// EmojiArt > PaletteStore.swift

func palette(at index: Int) -> Palette {
    let safeIndex = min(max(index, 0), palettes.count - 1) // <- smart
    return palettes[safeIndex]
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages