| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- alamofire
- RC
- ARC
- 리팩터링
- 프로그래머스
- AutoLayout
- SWIFT
- RxSwift
- TDD
- ios면접
- UIKit
- Di
- Safari Inspector
- storekit2
- hackerrank
- css학습
- five lines of code
- five lines of cdde
- mrc
- IOS
- firebase
- Swift디자인패턴
- 카카오맵클론
- algorithm
- 클린코드
- 앱의생명주기
- firestore
- Swift코딩테스트
- 코딩테스트입문
- unittest
- Today
- Total
목록hackerrank (4)
샘성의 iOS 개발 일지
문제 설명: Maria plays college basketball and wants to go pro. Each season she maintains a record of her play. She tabulates the number of times she breaks her season record for most points and least points in a game. Points scored in the first game establish her record for the season, and she begins counting from there. Example scores = [12, 24, 10, 24] Scores are in the same order as the games pla..
문제 설명: There will be two arrays of integers. Determine all integers that satisfy the following two conditions: The elements of the first array are all factors of the integer being considered The integer being considered is a factor of all elements of the second array These numbers are referred to as being between the two arrays. Determine how many such numbers exist. Example a = [2, 6] b = [24, ..
문제 설명: Staircase detail This is a staircase of size : n = 4 # ## ### #### Its base and height are both equal to n. It is drawn using # symbols and spaces. The last line is not preceded by any spaces. Write a program that prints a staircase of size n. 내 풀이: func staircase(n: Int) -> Void { for i in 1...n { // 띄어쓰기 먼저 반복 후, 마지막에 #가 출력되야 함 print(String(repeating: " ", count: n - i) + String(repeati..