Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CoreData Filter
- codability
- Swift 고차함수
- Persistent store Coordinator
- CoreData Concurrency
- Swift closure
- Swift LinkedList
- Raw value and Associated value
- CoreData
- 스위프트 클로저
- 다익스트라 이해
- Java
- NSManagedObject SubClass
- Associated Value
- Clean swift
- NSPredicates
- NSSortDescriptor
- iOS Static Library
- expensive operation
- dateFormatter
- LightWeight Migration
- 일급 객체
- iOS Static Library 사용하는방법
- CoreData Stack
- 트레일링 클로저
- persistentStoreCoordinator
- 2022 부스트캠프
- Swift
- 1009번
- leetcode #01
Archives
- Today
- Total
목록codability (1)
하루를살자

문제 https://app.codility.com/programmers/lessons/1-iterations/binary_gap/ BinaryGap coding task - Learn to Code - Codility Find longest sequence of zeros in binary representation of an integer. app.codility.com 문제 이해 인자 값으로 들어온 N 값을 이진수로 표현했을때, 1과 1 사이 최대 갭의 값을 반환하는 함수를 만들어라. ex) N = 1041, binary = 100000100001, 1과1 사이의 갭 값들: 5,4 -> 5 반환 문제 접근 과정 N 값을 binary 로 계산 binary gap 을 찾기 위해 1 이 들어 있는 인덱스 ..
Algorithm Practices
2022. 6. 20. 23:12