1085. Sum of Digits in the Minimum Number
Given an integer array
nums
, return0
if the sum of the digits of the minimum integer innums
is odd, or1
otherwise.
1 | class Solution { |
1085. Sum of Digits in the Minimum Number
Given an integer array
nums
, return0
if the sum of the digits of the minimum integer innums
is odd, or1
otherwise.
1 | class Solution { |