Skip to main content

Timeline for Implement Binary Exponentiation

Current License: CC BY-SA 4.0

5 events
when toggle format what by license comment
Jul 3, 2022 at 10:49 history edited loopy walt CC BY-SA 4.0
added 559 characters in body
Jul 3, 2022 at 6:37 comment added dingledooper 38 bytes? f=lambda x,n:[1][n:]or[x**n]+f(x,n//2)
Jul 3, 2022 at 3:21 comment added loopy walt True ...@Steffan
Jul 3, 2022 at 3:18 comment added naffetS I guess you could save a byte if you wanted to use Python 2
Jul 3, 2022 at 3:16 history answered loopy walt CC BY-SA 4.0