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