You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//DESCRIPTION: Some quick reasoning reveals that the base of the exponent must be less than 10, because 10^n has (n+1) digits. For each base from 1 to 9 (note that they are all a first power), we need to find the first x such that (b/10)^x < 0.1. Then, the base will contribute (x-1) to the overall count.