[Swift 알고리즘] - 최댓값 구하기(2) (Programmers)
https://school.programmers.co.kr/learn/courses/30/lessons/120862 문제 사진 내 풀이 테스트케이스 7번에서 실패하는데 이유를 모르겠다.. ㅠㅠ import Foundation func solution(_ numbers:[Int]) -> Int { var maxValue: Int = 0 for i in 0...numbers.count - 1 { for j in 0...numbers.count - 1 { if i != j { maxValue = max(maxValue, numbers[i] * numbers[j]) } } } return maxValue } solution([1, 4, 4, 5, 7, 7]) 최대값을 저장하는 maxValue 변수를 만든다. 두..
알고리즘
2022. 10. 28. 11:02
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift RIBs
- Swift ModernRIBs
- Swift Leetcode
- Swift 내림차순
- Swift 프로그래머스
- RIBs tutorial
- Swift joined
- removeLast()
- Swift joined()
- swift 고차함수
- ios
- swift (programmers)
- Swift final
- swift programmers
- CS 네트워크
- Swift init
- Combine: Asynchronous Programming with Swift
- Class
- 원티드 프리온보딩
- Swift Error Handling
- iOS error
- swift protocol
- Swift inout
- Swift
- 2023년 회고
- swift reduce
- RTCCameraVideoCapturer
- swift property
- Swift 프로퍼티
- 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 |
글 보관함