Created
February 8, 2021 03:20
-
-
Save davidseek/62378c42ed0c34f429f9528678ca4dbe to your computer and use it in GitHub Desktop.
hoteFinal.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Hotel { | |
private let smallRoomsCount: Int | |
private let mediumRoomsCount: Int | |
private let largeRoomsCount: Int | |
private var smallRooms = [String: Dog]() | |
private var mediumRooms = [String: Dog]() | |
private var largeRooms = [String: Dog]() | |
// MARK: - Public | |
public func checkIn(_ dog: Dog) -> String? { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment