-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDifferenceBetweenElementSumAndDigitSumOfArray.php
More file actions
47 lines (45 loc) · 1.46 KB
/
Copy pathDifferenceBetweenElementSumAndDigitSumOfArray.php
File metadata and controls
47 lines (45 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
namespace App;
/**
* Difference Between Element Sum and Digit Sum of an Array
*
* You are given a positive integer array nums. The element sum is the sum of all the elements in nums. The digit sum is
* the sum of all the digits (not necessarily distinct) that appear in nums. Return the absolute difference between the
* element sum and digit sum of nums.
* Note that the absolute difference between two integers x and y is defined as |x - y|.
*
* Example 1:
* Input: nums = [1,15,6,3]
* Output: 9
* Explanation:
* The element sum of nums is 1 + 15 + 6 + 3 = 25.
* The digit sum of nums is 1 + 1 + 5 + 6 + 3 = 16.
* The absolute difference between the element sum and digit sum is |25 - 16| = 9.
*
* Example 2:
* Input: nums = [1,2,3,4]
* Output: 0
* Explanation:
* The element sum of nums is 1 + 2 + 3 + 4 = 10.
* The digit sum of nums is 1 + 2 + 3 + 4 = 10.
* The absolute difference between the element sum and digit sum is |10 - 10| = 0.
*
* https://leetcode.com/problems/difference-between-element-sum-and-digit-sum-of-an-array
*/
class DifferenceBetweenElementSumAndDigitSumOfArray
{
/**
* @param int[] $nums
* @return int
*/
public function differenceOfSum(array $nums): int
{
$elementSum = 0;
$digitSum = 0;
foreach ($nums as $num) {
$elementSum += $num;
$digitSum += array_sum(str_split((string) $num));
}
return (int) abs($elementSum - $digitSum);
}
}