108451 [Swift][Qeque] 백준 10845번 (큐) 요구능력 : 큐 코드설명 : 큐를 구현하였다. 후기 : 학교에서 자료구조시간에 배운적이 있어서 무난히 풀이했다. var queue: [Int] = [] func push(_ n : Int) { queue.append(n) } func pop() -> Int { if size() == 0 { return -1 } else { return queue.removeFirst() } } func size() -> Int { return queue.count } func empty() -> Int { return queue.isEmpty ? 1 : 0 } func front() -> Int { return queue.first ?? -1 } func back() -> Int { return queue.last ??.. 2021. 8. 31. 이전 1 다음