[Swift] 10172 - 개
🧪 Problem
아래 예제와 같이 개를 출력하시오.
Input
없음
Output
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
💡 Solution
앞서 풀었던 문제인 고양이 에서 두 번째로 다뤘던 방법으로 해결해 보았다.
//
// 10172-Dog.swift
// Algorithm
//
// Created by Yujean Cho on 2022/02/13.
//
import Foundation
let dog = #"""
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
"""#
print(dog)
📚 Reference
multi-line strings