일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- firestore
- 클린코드
- ios면접
- firebase
- unittest
- alamofire
- UIKit
- 앱의생명주기
- css학습
- Swift코딩테스트
- 리팩터링
- RC
- five lines of code
- ARC
- 프로그래머스
- hackerrank
- TDD
- Swift디자인패턴
- storekit2
- Safari Inspector
- five lines of cdde
- AutoLayout
- algorithm
- Di
- 코딩테스트입문
- 카카오맵클론
- IOS
- SWIFT
- RxSwift
- mrc
- Today
- Total
목록전체 글 (97)
샘성의 iOS 개발 일지
문제 설명: Given an array of bird sightings where every element represents a bird type id, determine the id of the most frequently sighted type. If more than 1 type has been spotted that maximum amount, return the smallest of their ids. Example arr = [1, 1, 2, 2, 3] There are two each of types 1 and 2, and one sighting of type 3. Pick the lower of the two types seen twice: type 1. Function Descripti..
문제 설명: Given an array of integers and a positive integer k, determine the number of [i, j] pairs where i < j and ar[i] + ar[j] is divisible by k. Example ar = [1, 2, 3, 4, 5, 6] k = 5 Three pairs meet the criteria: [1, 4], [2, 3] and [4, 6]. Function Description Complete the divisibleSumPairs function in the editor below. divisibleSumPairs has the following parameter(s): int n: the length of arr..
문제 설명: 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, ..
UIView 화면의 콘텐츠를 표시하고 관리를 담당하는 사각형의 영역을 가진 객체를 UIView라고 정의한다. UIButton, UILabel등의 화면 구성요소들 또한 모두 UIView라고 지칭하며, 해당 객체를 관리하기 위해 존재하는 객체를 UIViewController라고 한다. UIViewController의 기능 View의 컨텐츠를 업데이트 하고, View와 사용자간에 상호작용에 반응하는 역할을 한다. 또한 인터페이스의 레이아웃을 관리 및 View의 사이즈를 조정하는 역할 뿐만 아니라, 다른 컨트롤러를 통한 화면 전환 기능 또한 수행한다.
문제 설명: 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 ..
문제 설명: Sam's house has an apple tree and an orange tree that yield an abundance of fruit. Using the information given below, determine the number of apples and oranges that land on Sam's house. In the diagram below: The red region denotes the house, where s is the start point, and t is the endpoint. The apple tree is to the left of the house, and the orange tree is to its right. Assume the trees..
문제 설명: HackerLand University has the following grading policy: Every student receives a grades in the inclusive range from 0 to 100. Any grade less than 40 is a failing grade. Sam is a professor at the university and likes to round each student's according to these rules: If the difference between the grade and the next multiple of 5 is less than 3, round grade up to the next multiple of 5. If t..