전체 글
-
var button: UIButton = UIButton() // 버튼의 타이틀 변경 button.setTitle("my text here", forState: .nomal) // 버튼의 타이틀 색상 변경 button.setTitleColor(color: UIColor?, for: UIControl.State) // 버튼의 타이틀 폰트 button.titleLabel?.font = UIFont // 버튼 동작 여부 button.isEnabled = Bool // 버튼의 백그라운드 색상 변경 button.backgroundColor = UIColor // 버튼의 이미지 설정 button.setImage(image: UIImage?, for: UIContorl.State) // 버튼의 코너 설정 button..
[iOS] UIButtonvar button: UIButton = UIButton() // 버튼의 타이틀 변경 button.setTitle("my text here", forState: .nomal) // 버튼의 타이틀 색상 변경 button.setTitleColor(color: UIColor?, for: UIControl.State) // 버튼의 타이틀 폰트 button.titleLabel?.font = UIFont // 버튼 동작 여부 button.isEnabled = Bool // 버튼의 백그라운드 색상 변경 button.backgroundColor = UIColor // 버튼의 이미지 설정 button.setImage(image: UIImage?, for: UIContorl.State) // 버튼의 코너 설정 button..
2023.01.23 -
import Foundation func solution(_ array:[Int]) -> Int { return array.sorted()[array.count/2] }
[Swift] 중앙값 구하기import Foundation func solution(_ array:[Int]) -> Int { return array.sorted()[array.count/2] }
2023.01.23 -
import Foundation func solution(_ array:[Int], _ n:Int) -> Int { return array.filter { $0 == n }.count }
[Swift] 중복된 숫자 개수import Foundation func solution(_ array:[Int], _ n:Int) -> Int { return array.filter { $0 == n }.count }
2023.01.05 -
import Foundation func solution(_ my_string:String) -> String { var result = "" my_string.forEach { if !result.contains($0) { result += String($0) } } return result }
[Swift] 중복된 문자 제거import Foundation func solution(_ my_string:String) -> String { var result = "" my_string.forEach { if !result.contains($0) { result += String($0) } } return result }
2023.01.05 -
import Foundation func solution(_ box:[Int], _ n:Int) -> Int { box.map { $0 / n }.reduce(1, *) }
[Swift] 주사위의 개수import Foundation func solution(_ box:[Int], _ n:Int) -> Int { box.map { $0 / n }.reduce(1, *) }
2023.01.05 -
import Foundation func solution(_ M:Int, _ N:Int) -> Int { return M * N - 1 }
[Swift] 종이 자르기import Foundation func solution(_ M:Int, _ N:Int) -> Int { return M * N - 1 }
2023.01.05 -
import Foundation func solution(_ n:Int) -> Int { let sqr = Int(sqrt(Double(n))) return sqr * sqr == n ? 1 : 2 }
[Swift] 제곱수 판별하기import Foundation func solution(_ n:Int) -> Int { let sqr = Int(sqrt(Double(n))) return sqr * sqr == n ? 1 : 2 }
2023.01.05 -
import Foundation func solution(_ n:Int) -> Int { var result = 0 var n = n while n > 0 { result += 1 n -= 1 if result % 3 == 0 || String(result).contains("3") { n += 1 } } return result }
[Swift] 저주의 숫자 3import Foundation func solution(_ n:Int) -> Int { var result = 0 var n = n while n > 0 { result += 1 n -= 1 if result % 3 == 0 || String(result).contains("3") { n += 1 } } return result }
2023.01.05