일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 티스토리챌린지
- WWDC
- 오블완
- APNS
- modern concurrency
- ios
- SWIFT
- modern concurrency deep dive
- 야곰 # 야곰아카데미커리어스타터캠프 #iOS개발자 # 부트캠프
- Today
- Total
목록코딩테스트 (16)
Geon
public func solution(_ A : inout [Int]) -> Int { let removeDuplicate = NSCountedSet(array:A) var result: Int = 0 for i in removeDuplicate { if removeDuplicate.count(for: i) == 1 { result = i as! Int } } return result } let removeDuplicate = NSCountedSet(array:A) for i in removeDuplicate { removeDuplicate.count(for: i) == 1 } 중복된 값이 1인것만 확인할수 있다.
코드 let input = readLine()!.split(separator: " ").map{Int(String($0))!} let range = input[0] var count = input[1] var index = count var result: [Int] = [] var list = Array(1...range) while !list.isEmpty { if count
코드 import Foundation struct Queue { private var list: [Int] = [] mutating func push(value: Int) { list.append(value) } mutating func pop() -> Int{ list.isEmpty ? -1 : list.removeFirst() } func size() -> Int { return list.count } func empty() -> Int { return list.isEmpty ? 1 : 0 } func front() -> Int { return list.first ?? -1 } func back() -> Int { return list.last ?? -1 } } var queue = Queue() f..
for _ in 0..
import Foundation for _ in 0..
스택 import Foundation struct Stack1 { private var list: [Int] = [] mutating func push(_ value: Int) { list.append(value) } mutating func pop() -> Int{ if list.isEmpty { return -1 } return list.removeLast() } func size() -> Int { return list.count } func empty() -> Int { return list.isEmpty ? 1 : 0 } func top() -> Int { return list.last ?? -1 } } var stack = Stack1() for _ in 0..