본문 바로가기
python-algorithm

3190. Find Minimum Operations to Make All Elements Divisible by Three

by 무적김두칠 2024. 9. 19.

https://leetcode.com/problems/find-minimum-operations-to-make-all-elements-divisible-by-three/description/

 

1
2
3
4
5
6
7
8
9
class Solution:
    def minimumOperations(self, nums: List[int]) -> int:
        answer = 0
        for num in nums:
            if num % 3 != 0:
                answer += 1
        
        return answer
        
cs

case 1 ) 숫자가 3으로 나눴을때 나머지 가 0 인 경우  : 아무것도 안해도됨
case 2 ) 숫자가 3으로 나눴을때 나머지 가 1 인 경우 :  1을 빼면됨
case 3 ) 숫자가 3으로 나눴을때 나머지 가 2 인 경우 :  1을 더하면됨

반응형

댓글