Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created September 4, 2017 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/4b3b6a0bb2275650f42618a7c522af3a to your computer and use it in GitHub Desktop.
Save Whateverable/4b3b6a0bb2275650f42618a7c522af3a to your computer and use it in GitHub Desktop.
benchable6
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
releases sub hanoi(int $n, int $d, int $a, int $i) {return if $n == 0; hanoi($n - 1, $d, $i, $a) ; hanoi($n - 1, $i, $a, $d) }; hanoi(15, 1, 2, 3);
¦2015.12: «0.1962»
¦a02620f: «0.1790»
¦2016.01.1: «0.1757»
¦2016.02: «0.1845»
¦2016.03: «0.1960»
¦2016.04: «0.2031»
¦64fbc84: «0.2105»
¦d3acb93: «0.1949»
¦440da02: «0.1806»
¦2016.05: «0.1729»
¦376950a: «0.1759»
¦a5c46bb: «0.1919»
¦13ad297: «0.1764»
¦1135805: «0.2293»
¦3bd9fd6: «0.2126»
¦388eda0: «0.1931»
¦e423a0a: «0.1829»
¦2016.06: «0.1461»
¦2016.07.1: «0.1444»
¦2016.08.1: «0.1487»
¦2016.09: «0.1482»
¦2016.10: «0.1454»
¦2016.11: «0.1480»
¦2016.12: «0.1435»
¦b01dfcd: «0.1443»
¦8ab6e01: «0.2124»
¦2017.01: «0.2027»
¦15753fd: «0.2188»
¦4d4822a: «0.1552»
¦d088e0e: «0.1478»
¦bfbf348: «0.1430»
¦2017.02: «0.1425»
¦2017.03: «0.1446»
¦2017.04.3: «0.1436»
¦2017.05: «0.1489»
¦2017.06: «0.1776»
¦2017.07: «0.1774»
¦59ba9c0: «0.1823»
¦7e40372: «0.1877»
¦cdbb085: ««run failed, exit code = -1, exit signal = -1»»
¦1599873: «0.1609»
¦2017.08: «0.1587»
¦HEAD: «0.1671»
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment