Project Euler #68: Magic N-gon ring

  • + 1 comment

    How to handle two digits in output. Do we need to print 'A' in place of 10 & so on.

    • + 0 comments

      Print two digits as they are and do not convert into in a letter, so print 10 as 10 and not 'A'.

      What I meant by 'alphabetical order' is as follows. If two answers are 24105101817673934 and 2594936378711015, then print them as

      24105101817673934
      2594936378711015

      but NOT as numerical order as follows:

      2594936378711015
      24105101817673934

      Hope this helps.