Skip to content

Instantly share code, notes, and snippets.

View Magdalenaspace's full-sized avatar

Magdalena Samuel Magdalenaspace

  • California Los Angeles
View GitHub Profile
@Magdalenaspace
Magdalenaspace / optionals.swift
Created January 19, 2022 22:43 — forked from TheMuellenator/optionals.swift
iOS repl.it - Optionals Challenge Solution
//Don't change this
var studentsAndScores = ["Amy": Int(readLine()!)!, "James": Int(readLine()!)!, "Helen": Int(readLine()!)!]
func highestScore(scores: [String: Int]) {
//Write your code here.
let a = studentsAndScores["Amy"]!
let b = studentsAndScores["James"]!
let c = studentsAndScores["Helen"]!