일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Graph
- 자바
- network
- git
- 그레이들
- db
- TypeScript
- 프로그래머스
- react
- Redux
- 안드로이드
- 백준
- Python
- frontend
- CS
- vscode
- DP
- DFS
- 알고리즘
- 리트코드
- 동적 계획법
- java
- Database
- BFS
- Javascript
- Data Structure
- 다이나믹 프로그래밍
- LeetCode
- VIM
- Algorithm
Archives
- Today
- Total
늘 겸손하게
Leetcode Q : Number of Steps to Reduce a Number to Zero 본문
코딩 문제/LeetCode
Leetcode Q : Number of Steps to Reduce a Number to Zero
besforyou999 2021. 2. 13. 10:43February LeetCoding Challenge 2021 ( Week 2, day 12 )
Q : Number of Steps to Reduce a Number to Zero
문제 해설
주어진 음수가 아닌 정수 "num"을 0이 될 때까지 필요한 작업의 횟수를 반환하면 되는 문제
- 수행할 작업
1. num이 짝수라면 2로 나누기
2. num이 홀수라면 -1
- 제한
0 <= num <= 10^6
문제 풀이
num이 0이 될때까지 반복 문안에서 작업을 수행해주고, 작업을 몇 번 수행하는지 세어 주면 끝
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class Solution {
public int numberOfSteps (int num) {
int counter = 0;
while(num > 0) {
if(num %2 == 0) {
num = (num/2);
counter++;
}
else if(num %2 == 1) {
num -= 1;
counter++;
}
}
return counter;
}
}
|
cs |
결과
Runtime : 0ms , Your runtime beats 100.00 % of java submissions
Memory Usage : 35.8 MB , Your memory usage beats 50.83% of java submissions
메모리 이용량 상위 코드들도 35.2 MB 쓰는것을 보면 큰 차이는 없는것같다.
결론
평소보다 훨씬 쉬운 문제였다.
'코딩 문제 > LeetCode' 카테고리의 다른 글
LeetCode Q - Maximum 69 Number (Java) (0) | 2021.02.21 |
---|---|
LeetCode Q - Container With Most Water (Java) (0) | 2021.02.19 |
Leetcode Q : Letter Case Permutation (Java) (0) | 2021.02.17 |
Leetcode Q : The K Weakest Rows in a Matrix (0) | 2021.02.16 |
Leetcode Q : Valid Anagram (0) | 2021.02.13 |