오늘의 알고리즘 문제는 Stack / Queue에 관련된 문제였다.주어진 s에 괄호가 여/닫이 다 되는지 판단하고 답을 내는 문제였고,풀이는 아래와 같다. https://school.programmers.co.kr/learn/courses/30/lessons/12909 내 풀이import Foundationfunc solution(_ s:String) -> Bool { var ans:Bool = false var tempArr: [String] = [] for bracket in s { if !tempArr.isEmpty && tempArr[tempArr.endIndex - 1] == "(" && bracket == ")" { tempArr.remove..
https://school.programmers.co.kr/learn/courses/30/lessons/12950 내 풀이func solution(_ arr1: [[Int]], _ arr2: [[Int]]) -> [[Int]] { var result: [[Int]] = [] for i in 0.. 2차원 배열 문제는 처음이라 접근하는 방법에 어려움이 있었다. 두 배열의 길이는 항상 같음으로 arr1.count를 사용해 배열안에 배열을 생성 [ [ ] ]각 배열의 요소에 접근해서 각각 더해줘야하기 때문에 result[i번째]에 arr1[i번째][j번째] 요소 + arr2[i번째][j번째] 요소의 합 추가 ex) i가 0 // j가 0 인경우 arr1[0][0] ==> 1 arr2[0]..
- Total
- Today
- Yesterday
- Swift Leetcode
- swift (programmers)
- swift reduce
- 2023년 회고
- Swift 내림차순
- CS 네트워크
- Swift RIBs
- RIBs tutorial
- RTCCameraVideoCapturer
- swift 고차함수
- swift protocol
- Swift ModernRIBs
- Swift joined()
- Swift final
- Swift 프로퍼티
- Swift 프로그래머스
- iOS error
- removeLast()
- ios
- Class
- swift programmers
- swift property
- Combine: Asynchronous Programming with Swift
- Swift
- Swift inout
- 원티드 프리온보딩
- Swift init
- Swift Error Handling
- Swift joined
- Swift 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |