leetcode.com 2025-11-22
🟢3190.find-minimum-operations-to-make-all-elements-divisible-by-three
🏷️ Tags
#array #math
🟢3190.find-minimum-operations-to-make-all-elements-divisible-by-three
🏷️ Tags
#array #math
Telegraph
find-minimum-operations-to-make-all-elements-divisible-by-three
You are given an integer array nums. In one operation, you can add or subtract 1 from any element of nums. Return the minimum number of operations to make all elements of nums divisible by 3. Example 1: Input: nums = [1,2,3,4] Output: 3 Explanation: All…