▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-steps-to-reduce-a-number-to-zero/ Number of Steps to Reduce a Number to Zero - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정수 num 이 주어진다. 짝수라면 2로 나누고 홀수라면 1를 뺀다. 이를 0이 될 때까지 반복한 횟수를 출력하는 문제. class Solution: def numberOfSt..