Skip to content
This repository has been archived by the owner on Dec 17, 2023. It is now read-only.

Latest commit

 

History

History
9 lines (8 loc) · 176 Bytes

Staircase.md

File metadata and controls

9 lines (8 loc) · 176 Bytes

Staircase

func staircase(n: Int) -> Void {
    for i in 1...n {
        print(String(repeating: " ", count: n - i) + String(repeating: "#", count: i))
    }
}