Skip to content

Latest commit

 

History

History

sum-of-digits-in-the-minimum-number

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

Given an array A of positive integers, let S be the sum of the digits of the minimal element of A.

Return 0 if S is odd, otherwise return 1.

 

Example 1:

Input: [34,23,1,24,75,33,54,8]
Output: 0
Explanation: 
The minimal element is 1, and the sum of those digits is S = 1 which is odd, so the answer is 0.

Example 2:

Input: [99,77,33,66,55]
Output: 1
Explanation: 
The minimal element is 33, and the sum of those digits is S = 3 + 3 = 6 which is even, so the answer is 1.

 

Note:

  1. 1 <= A.length <= 100
  2. 1 <= A[i].length <= 100

Related Topics

[Array] [Math]

Similar Questions

  1. Add Digits (Easy)

Hints

Hint 1 How to find the minimum number in an array?
Hint 2 Loop over the array and compare each one of the numbers.
Hint 3 How to find the sum of digits?
Hint 4 Divide the number consecutively and get their remainder modulus 10. Sum those remainders and return the answer as the problem asks.