전체 글 (165) 썸네일형 리스트형 [Day12-2] 첫 번째로 나오는 음수 문제 내 정답 코드 import Foundation func solution(_ num_list:[Int]) -> Int { for i in 0.. Int { let filter_num_list = num_list.enumerated().filter { $0.element < 0 }.map { Int($0.offset) } return filter_num_list.isEmpty ? -1 : filter_num_list[0] } 배운 기술 [Day12-1] 리스트 자르기 문제 내 정답 코드 import Foundation func solution(_ n:Int, _ slicer:[Int], _ num_list:[Int]) -> [Int] { let (a, b, c) = (slicer[0], slicer[1], slicer[2]) switch n { case 1: return Array(num_list[0...b]) case 2: return Array(num_list[a...]) case 3: return Array(num_list[a...b]) default: return num_list[a...b].enumerated().filter { $0.offset.isMultiple(of: c) }.map { Int($0.element) } } } # 1. 4개의 케이스를 구.. [Day11-5] 가까운 1 찾기 문제 내 정답 코드 import Foundation func solution(_ arr:[Int], _ idx:Int) -> Int { for i in idx.. 이전 1 ··· 34 35 36 37 38 39 40 ··· 55 다음