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

문제 자연수가 들어있는 배열 arr가 매개변수로 주어집니다. 배열 arr안의 숫자들 중에서 앞에 있는 숫자들부터 뒤에 중복되어 나타나는 숫자들 중복 횟수를 계산해서 배열로 return 하도록 solution 함수를 완성해주세요. 만약 중복되는 숫자가 없다면 배열에 -1을 채워서 return 하세요. ▶입출력 예 #1 arr = [1, 2, 3, 3, 3, 3, 4, 4]에서 3은 4번, 4는 2번씩 나타나므로 [4, 2]를 반환합니다. ▶입출력 예 #2 arr = [3, 2, 4, 4, 2, 5, 2, 5, 5]이면 2가 3회, 4가 2회, 5가 3회 나타나므로 [3, 2, 3]를 반환합니다. ▶입출력 예 #3 [3, 5, 7, 9, 1]에서 중복해서 나타나는 숫자는 없으므로 [-1]을 반환합니다. ##..
Algorithm Practices
2022. 6. 13. 02:46