일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Swift코딩테스트
- RxSwift
- unittest
- five lines of code
- IOS
- firestore
- storekit2
- 리팩터링
- Safari Inspector
- ARC
- TDD
- Swift디자인패턴
- css학습
- hackerrank
- 앱의생명주기
- AutoLayout
- algorithm
- RC
- 프로그래머스
- SWIFT
- five lines of cdde
- ios면접
- mrc
- 카카오맵클론
- 코딩테스트입문
- Di
- alamofire
- 클린코드
- UIKit
- firebase
- Today
- Total
목록Algorithm/HackerRank (12)
샘성의 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, ..
문제 설명: You are choreographing a circus show with various animals. For one act, you are given two kangaroos on a number line ready to jump in the positive direction (i.e, toward positive infinity). The first kangaroo starts at location x1 and moves at a rate of v1 meters per jump. The second kangaroo starts at location x2 and moves at a rate of v2 meters per jump. You have to figure out a way to ..