250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- front-end
- ipad
- react
- CSS
- effect
- 자바스크립트
- 풀스택
- javascript
- image
- xcode
- HTML
- css3
- 비전공 개발자
- 백엔드
- 비전공자
- 개발자
- jQuery
- iPhone
- MAC
- button
- 애니메이션
- hover
- iOS 개발자
- IOS
- keyframes
- Animation
- 프론트엔드
- php
- SWIFT
- html5
Archives
- Today
- Total
비전공자 개발일기
[SWIFT] Coding Test Practice Day 3 본문
728x90
SMALL
나머지 구하기
import UIKit
func solution(_ num1:Int, _ num2:Int) -> Int {
guard (num1 > 0 && num1 <= 100), (num2 > 0 && num2 <= 100) else {
return -1
}
var res = 0
if(num1 >= num2) {
res = num1 % num2
return res
} else {
res = num2 % num1
return res
}
}
solution(3, 2)
solution(10, 5)
중앙값 구하기 -> 다른 방법도 찾아서 숙지 (내장 함수 숙지)
func solution(_ array:[Int]) -> Int {
guard (array.count % 2 != 0), (array.count > 0 && array.count < 100) else {
return -1001
}
for i in array {
guard (i > -1000 && i < 1000) else {
return -1001
}
}
var newArray = array
var newIdx = array.count / 2
newArray.sort(by: <)
return newArray[newIdx]
}
solution([1,10,10,7,2, 55, 30])
solution([1,10,11,7,2])
solution([9,-1,0])
728x90
LIST
'SWIFT' 카테고리의 다른 글
Text Field & Delegate (0) | 2022.12.06 |
---|---|
Timer App (0) | 2022.12.05 |
[SWIFT] Coding Test Practice Day 2 (0) | 2022.11.08 |
[SWIFT] Coding Test Practice Day 1 (0) | 2022.11.08 |
UP and Down Number Game in iOS APP (0) | 2022.11.05 |