[Swift 알고리즘] - Best Time to Buy and Sell Stock (LeetCode)
https://leetcode.com/problems/best-time-to-buy-and-sell-stock/ 일별로 주식 가격이 주어졌을 때, 최대 이익을 구하기 내 풀이 class Solution { func maxProfit(_ prices: [Int]) -> Int { guard prices.count > 1 else { return 0 } var result: [Int] = [] for price in prices { for j in 1.. 0 { var profit = prices[j] - price print(prices[j], "-", price, "=", prices[j] - price) result.append(profit) } } } return result.max() ?? 0 } ..
알고리즘
2023. 8. 22. 09:08
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift
- Swift 프로그래머스
- swift protocol
- RTCCameraVideoCapturer
- 원티드 프리온보딩
- ios
- Swift 내림차순
- swift programmers
- Swift inout
- RIBs tutorial
- removeLast()
- Swift Error Handling
- Swift 프로퍼티
- Swift Leetcode
- swift (programmers)
- Swift RIBs
- Class
- CS 네트워크
- 2023년 회고
- Combine: Asynchronous Programming with Swift
- swift property
- Swift init
- iOS error
- Swift ModernRIBs
- swift 고차함수
- swift reduce
- Swift 알고리즘
- Swift joined()
- Swift final
- Swift joined
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함