티스토리 뷰
728x90
https://programmers.co.kr/learn/courses/30/lessons/12943
내 풀이
func solution(_ num:Int) -> Int {
var count = 0
var number = num
let noResult = -1
while number != 1 {
if number % 2 == 0 {
number = number / 2
count += 1
} else if number % 2 == 1 {
number = number * 3 + 1
count += 1
}
}
return count >= 500 ? -1 : count
}
배운것
while
조건문이 참일 경우 반복문이 실행 되게 합니다.
사용법
while 조건 {
statements
}
예제
var arrInt: [Int] = []
var numberCount: Int = 0
while arrInt.count < 7 {
print(arrInt)
arrInt.insert(numberCount, at: arrInt.endIndex)
numberCount += 1
}
// []
// [0]
// [0, 1]
// [0, 1, 2]
// [0, 1, 2, 3]
// [0, 1, 2, 3, 4]
// [0, 1, 2, 3, 4, 5]
728x90
'알고리즘' 카테고리의 다른 글
[Swift 알고리즘] - 키패드 누르기 (Programmers) (0) | 2022.05.18 |
---|---|
[Swift 알고리즘] - 이상한 문자 만들기(Programmers) (0) | 2022.05.16 |
[Swift 알고리즘] - 시저암호 (programmers) (0) | 2022.05.12 |
[Swift 알고리즘] - Max Consecutive Ones (연속되는 숫자 1의 최대값 구하기) (0) | 2022.05.10 |
[Swift 알고리즘] - 약수의 합 (0) | 2022.05.04 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- Swift final
- CS 네트워크
- Class
- Swift init
- Combine: Asynchronous Programming with Swift
- Swift Error Handling
- removeLast()
- Swift 프로퍼티
- Swift
- swift (programmers)
- swift 고차함수
- 원티드 프리온보딩
- Swift 알고리즘
- 2023년 회고
- Swift inout
- iOS error
- Swift 내림차순
- swift property
- RTCCameraVideoCapturer
- ios
- Swift Leetcode
- swift programmers
- Swift joined()
- swift protocol
- Swift joined
- Swift RIBs
- Swift 프로그래머스
- swift reduce
- Swift ModernRIBs
- RIBs tutorial
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함