Twodition

We can add a two digit number with another two digit number to get a two digit number. For example, 22+23=45 or 10+89=99 are such addition operations. How many such all-two-digit addition operation can we do?

Details:

  • We deal only with positive integers.
  • 22 + 23 = 45 and 23 + 22 = 45 represents the same operation.
  • 22 + 00 = 22 or 22 +07 = 29 and such are not acceptable operations.
1640 4095 2332

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Giorgos K.
Mar 16, 2018

Using Mathematica

Length@Select[Union[Sort/@Tuples[Range[10,99],{2}]],IntegerLength@Total@#==2&]

returns 1640

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...