You are given a positive integer num consisting of exactly four digits.
Split num into two new integers new1 and new2 by using the digits found in num. Leading zeros are allowed in new1 and new2, and
all the digits found in num must be used.
For example, given num = 2932, you have the following digits: two 2’s, one 9 and one 3. Some of the possible pairs [new1, new2] are [22, 93], [23, 92], [223, 9] and [2, 329].
Input: num =2932Output: 52Explanation: Some possible pairs [new1, new2] are [29,23],[223,9], etc.The minimum sum can be obtained by the pair [29,23]:29+23=52.
Input: num =4009Output: 13Explanation: Some possible pairs [new1, new2] are [0,49],[490,0], etc.The minimum sum can be obtained by the pair [4,9]:4+9=13.
To minimize the sum, sort the digits and assign the smallest two digits to the tens place of each number, and the largest two to the ones place. This ensures the two numbers formed are as small as possible.
classSolution {
publicintminimumSum(int num) {
int[] d =newint[4];
for (int i = 0; i < 4; i++) { d[i]= num % 10; num /= 10; }
Arrays.sort(d);
return d[0]*10 + d[1]*10 + d[2]+ d[3];
}
}
1
2
3
4
5
6
7
8
9
classSolution {
funminimumSum(num: Int): Int {
val d = IntArray(4)
var n = num
for (i in0..3) { d[i] = n % 10; n /=10 }
d.sort()
return d[0]*10 + d[1]*10 + d[2] + d[3]
}
}
1
2
3
4
classSolution:
defminimumSum(self, num: int) -> int:
d = sorted([int(x) for x in str(num)])
return d[0]*10+ d[1]*10+ d[2] + d[3]
1
2
3
4
5
6
7
8
9
impl Solution {
pubfnminimum_sum(num: i32) -> i32 {
letmut d =vec![];
letmut n = num;
for _ in0..4 { d.push(n%10); n/=10; }
d.sort();
d[0]*10+ d[1]*10+ d[2] + d[3]
}
}