问题对于任何以N为基数的数字,找出一个以N为基数的数字,使得写为数字的前x位数字可以被x整除。例如,在基数2中它是10,在基数10中它是3816547290,等等。到目前为止,我已经解决了14个: base 2 list is [1, 0] base 4 list is [1, 2, 3, 0] base 4 list is [3, 2, 1, 0] base 6 list is [1, 4, 3, 2, 5, 0] base 6 list is [5, 4, 3, 2, 1, 0] base 8 list is [3, 2, 5, 4, 1, 6, 7, 0] base 8 list is [5, 2, 3, 4, 7, 6, 1, 0] base 8 list is [5, 6, 7, 4, 3, 2, 1, 0] base 10 list