1085. Sum of Digits in the Minimum Number
https://leetcode.com/problems/sum-of-digits-in-the-minimum-number
Description
Given an integer array nums
, return 0
if the sum of the digits of the minimum integer in nums
is odd, or 1
otherwise.
Example 1:
Example 2:
Constraints:
1 <= nums.length <= 100
1 <= nums[i] <= 100
ac
Last updated