일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Custom PageViewController
- programmers
- JSONSerialization
- 티스토리챌린지
- Xcode
- Pod
- JSONParser
- dynamic height
- Codable
- RealmSwift
- storybaord
- pbxfilesystemsynchronizedrootgroup
- 위클리챌린지
- SwiftGen
- 프로그래머스
- UITableView
- 정보처리기사
- pbxgroup
- PageViewController
- Decodable
- CustomCode
- 정보처리기사 실기 요약본
- parse
- IOS
- swift
- JSON
- issecuretextentry
- cocoapods
- 2018 KAKAO BLIND RECRUITMENT
- 정보처리기사 실기
- Today
- Total
목록위클리챌린지 (2)
iOS 개발일기
https://programmers.co.kr/learn/courses/30/lessons/83201 코딩테스트 연습 - 2주차 [[100,90,98,88,65],[50,45,99,85,77],[47,88,95,80,67],[61,57,100,80,65],[24,90,94,75,65]] "FBABD" [[70,49,90],[68,50,38],[73,31,100]] "CFD" programmers.co.kr 나의 풀이 func solution(_ score: [[Int]]) -> String { var result = "" score.enumerated().forEach { (x, line) in var score = [Int]() for y in 0..
https://programmers.co.kr/learn/courses/30/lessons/82612 코딩테스트 연습 - 1주차 새로 생긴 놀이기구는 인기가 매우 많아 줄이 끊이질 않습니다. 이 놀이기구의 원래 이용료는 price원 인데, 놀이기구를 N 번 째 이용한다면 원래 이용료의 N배를 받기로 하였습니다. 즉, 처음 이 programmers.co.kr 나의 풀이 func solution(_ price: Int, _ money: Int, _ count: Int) -> Int64 { let totalPrice = (0.. Int64 { var answer = money for i in 0.. Int64 { var total = 0 for i in 0.. Int64 { let total = price *..