This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compatibilidade para divisão inteira // entre Python 2 e 3 | |
from __future__ import division | |
import pprint | |
import timeit | |
from collections import deque | |
def somar_digitos_v1(number, base=10): | |
assert number >= 0 |