일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- weak var
- SwiftUI Boolean 값
- 서체관리자
- 영문 개인정보처리방침
- App Store Connect
- Startign Assignments
- RunningTimer
- 클로저의 캡슐화
- swift
- CoreLocation
- 러닝타이머
- UIAlertAction
- UICollectionViewFlowLayout
- dispatchsource
- font book
- 한국어 개인정보처리방침
- Required Reason API
- 단일 책임원칙
- MKMapViewDelegate
- weatherKit
- addannotation
- xcode로 날씨앱 만들기
- Xcode
- AnyObject
- CLLocationManagerDelegate
- Timer
- 러닝기록앱
- Protocol
- WeatherManager
- MKMapItem
Archives
- Today
- Total
목록For 반복문 (1)
VesselWheel
삼총사 (considering 시간복잡도) / 시간복잡도를 고려하니 중복값 문제 발생
문제 풀이 import Foundation func solution(_ number:[Int]) -> Int { var count = 0 let n = number.count for i in 0.. Int? { guard let firstNum = array.first else { return nil } var maxNum = firstNum for num in array { if num > maxNum { maxNum = num } } return maxNum } let input = [3, 5, 6, 1, 2, 4] let result = findMaxNum(input) print("정답 = 6 / 현재 풀이 값 = ", findMaxNum([3, 5, 6, 1, 입력 array의 원소 갯수 = N ..
Coding Test Practice in Swift
2024. 2. 20. 10:52