vote up 4 vote down star
1

What's the fastest and easiest to read implementation of calculating the sum of digits?

I.e. Given the number: 17463 = 1 + 7 + 4 + 6 + 3 = 21

flag

7 Answers

vote up 24 vote down check

You could do it arithmetically, without using a string:

sum = 0;
while (n != 0) {
    sum += n % 10;
    n /= 10;
}
link|flag
Beat me to it. This is the best way. – Simucal Jan 26 at 6:23
Personally, I see this better conceptually as a for loop... But maybe that's just my mind, I tend to see everything better as a for loop... – Matthew Scharley Jan 26 at 8:04
@monoxide, the while loop is more succinct. You have no need for an index or for tight control of the loop iterations. – Simucal Jan 26 at 10:26
for (; n!= 0; n /= 10) { sum += n % 10;} To my mind there's an implicit counter there, n. But my mind is known to work funilly when talking about loops. There's no need to initialise n of course, because that's handled before the loop presumably. – Matthew Scharley Jan 26 at 10:28
vote up 3 vote down
 public static int SumDigits(int value)
 {
     int sum = 0;
     while (value != 0)
     {
         int rem;
         value = Math.DivRem(value, 10, out rem);
         sum += rem;
     }
     return sum;
 }
link|flag
Assuming DivRem does the intelligent thing, this should avoid doing the division twice. I like it better than the other obvious answer (though both are close). – Software Monkey Jan 26 at 6:50
This is the code of DivRem public static int DivRem(int a, int b, out int result) { result = a % b; return (a / b); } so it does not make intelligent thing!! – Ahmed Said Jan 26 at 7:50
Any reasonable compiler will see that x and y don't change between the x/y and x%y operations and thus can utilize a single divsion op to get both results. I know that gcc does this for c/c++ code. I assume c# compilers are at least as competent with such a simple optimization. – Evan Teran Jan 26 at 8:03
This almost certainly isn't something the C# compiler would do - it would be up to the JIT. – Jon Skeet Jan 26 at 8:22
fair enough, I was kinda lumping the JIT and the compiler proper into one category, but yea, the JIT would do the actual optimization. – Evan Teran Jan 26 at 15:25
vote up 7 vote down

I use

int result = 17463.ToString().Sum(c => c - '0');

It uses only 1 line of code.

link|flag
Converting an integer to a string in order to sum it's values is not really very efficient. I also don't consider this code especially readable. Though I didn't downvote this. – Brian Jan 26 at 6:54
You forgot to convert the string to array first. 17463.ToString().ToCharArray().Sum(c => c - '0'); – Hasan Khan Jan 26 at 7:58
2  
You don't have to convert it to an array first. – atsjoo Jan 26 at 7:59
+1 from me, I like oneliners.. :) – Stefan Feb 6 at 13:08
Very nice and functional approach! – Martijn Mar 5 at 10:40
vote up 0 vote down

I like the chaowman's response, but would do one change

int result = 17463.ToString().Sum(c => Convert.ToInt32(c));

I'm not even sure the c - '0', syntax would work? (substracting two characters should give a character as a result I think?)

I think it's the most readable version (using of the word sum in combination with the lambda expression showing that you'll do it for every char). But indeed, I don't think it will be the fastest.

link|flag
vote up 5 vote down

For integer numbers, Greg Hewgill has most of the answer, but forgets to account for the n < 0. The sum of the digits of -1234 should still be 10, not -10.

n = Math.Abs(n);
sum = 0;
while (n != 0) {
    sum += n % 10;
    n /= 10;
}

It the number is a floating point number, a different approach should be taken, and chaowman's solution will completely fail when it hits the decimal point.

link|flag
Good catch. It all depends on how the modulo operator is defined in the language in question; in C# the result takes the same sign as the dividend which makes my method fail for negative numbers. In other languages it may work, see the table at en.wikipedia.org/wiki/Modulo_operation – Greg Hewgill Jan 26 at 8:04
vote up 5 vote down
int num = 12346;
int sum = 0;
for (int n = num; n > 0; sum += n % 10, n /= 10) ;
link|flag
vote up 0 vote down

I would suggest that the easiest to read implementation would be something like:

public int sum(int number)
{
    int ret = 0;
    foreach (char c in Math.Abs(number).ToString())
        ret += c - '0';
    return ret;
}

This works, and is quite easy to read. BTW: Convert.ToInt32('3') gives 51, not 3. Convert.ToInt32('3' - '0') gives 3.

I would assume that the fastest implementation is Greg Hewgill's arithmetric solution.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.