Ad
  • Custom User Avatar

    There are also better practices than reduce out there, like using math.prod in cases like this, as it's a lot more readable.

  • Custom User Avatar

    it just actually that one percent:)

  • Custom User Avatar

    I was trying to implement your solution in Python 3 since it looked very cool. But I found out reduce has been removed from Python 3 and the comment is:

    Removed reduce(). Use functools.reduce() if you really need it; however, 99 percent of the time an explicit for loop is more readable.

    Does this mean that although reduce looks cool, it actually sucks?