Skip to content

Instantly share code, notes, and snippets.

@kstrauser
Last active May 31, 2019 14:09
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 kstrauser/69d8467705e5a35775ea0437fe62e618 to your computer and use it in GitHub Desktop.
Save kstrauser/69d8467705e5a35775ea0437fe62e618 to your computer and use it in GitHub Desktop.
A toy implementation of Knuth's up-arrow notation
#!/usr/bin/env python3
import pytest
def up_n(arrows, a, b):
"""Return a ↑(arrows times) b."""
if arrows == 1:
return a ** b
n = a
for _ in range(b - 1):
n = up_n(arrows - 1, a, n)
return n
@pytest.mark.parametrize("a,b,expected", [(2, 3, 8), (3, 2, 9)])
def test_up_1(a, b, expected):
"""This is just a ** b. It's pretty much a given."""
assert up_n(1, a, b) == expected
JFC = 2_003_529_930_406_846_464_979_072_351_560_255_750_447_825_475_569_751_419_265_016_973_710_894_059_556_311_453_089_506_130_880_933_348_101_038_234_342_907_263_181_822_949_382_118_812_668_869_506_364_761_547_029_165_041_871_916_351_587_966_347_219_442_930_927_982_084_309_104_855_990_570_159_318_959_639_524_863_372_367_203_002_916_969_592_156_108_764_948_889_254_090_805_911_457_037_675_208_500_206_671_563_702_366_126_359_747_144_807_111_774_815_880_914_135_742_720_967_190_151_836_282_560_618_091_458_852_699_826_141_425_030_123_391_108_273_603_843_767_876_449_043_205_960_379_124_490_905_707_560_314_035_076_162_562_476_031_863_793_126_484_703_743_782_954_975_613_770_981_604_614_413_308_692_118_102_485_959_152_380_195_331_030_292_162_800_160_568_670_105_651_646_750_568_038_741_529_463_842_244_845_292_537_361_442_533_614_373_729_088_303_794_601_274_724_958_414_864_915_930_647_252_015_155_693_922_628_180_691_650_796_381_064_132_275_307_267_143_998_158_508_811_292_628_901_134_237_782_705_567_421_080_070_065_283_963_322_155_077_831_214_288_551_675_554_073_345_107_213_112_427_399_562_982_719_769_150_054_883_905_223_804_357_045_848_197_956_393_157_853_510_018_992_000_024_141_963_706_813_559_840_464_039_472_194_016_069_517_690_156_119_726_982_337_890_017_641_517_190_051_133_466_306_898_140_219_383_481_435_426_387_306_539_552_969_691_388_024_158_161_859_561_100_640_362_119_796_101_859_534_802_787_167_200_122_604_642_492_385_111_393_400_464_351_623_867_567_078_745_259_464_670_903_886_547_743_483_217_897_012_764_455_529_409_092_021_959_585_751_622_973_333_576_159_552_394_885_297_579_954_028_471_943_529_913_543_763_705_986_928_913_757_153_740_001_986_394_332_464_890_052_543_106_629_669_165_243_419_174_691_389_632_476_560_289_415_199_775_477_703_138_064_781_342_309_596_190_960_654_591_300_890_188_887_588_084_733_625_956_065_444_888_501_447_335_706_058_817_090_162_108_499_714_529_568_344_061_979_690_565_469_813_631_162_053_579_369_791_403_236_328_496_233_046_421_066_136_200_220_175_787_851_857_409_162_050_489_711_781_820_400_187_282_939_943_446_186_224_328_009_837_323_764_931_814_789_848_119_452_713_007_440_220_765_680_910_376_203_999_203_492_023_906_626_264_491_909_167_985_461_515_778_839_060_397_720_759_279_378_852_241_294_301_017_458_086_862_263_369_284_725_851_403_039_615_558_564_330_385_450_688_652_213_114_813_638_408_384_778_263_790_459_607_186_876_728_509_763_471_271_988_890_680_478_243_230_394_718_650_525_660_978_150_729_861_141_430_305_816_927_924_971_409_161_059_417_185_352_275_887_504_477_592_218_301_158_780_701_975_535_722_241_400_019_548_102_005_661_773_589_781_499_532_325_208_589_753_463_547_007_786_690_406_429_016_763_808_161_740_550_405_117_670_093_673_202_804_549_339_027_992_491_867_306_539_931_640_720_492_238_474_815_280_619_166_900_933_805_732_120_816_350_707_634_351_669_869_625_020_969_023_162_859_350_071_874_190_579_161_241_536_897_514_808_261_904_847_946_571_736_601_005_892_476_655_445_840_838_334_790_544_144_817_684_255_327_207_315_586_349_347_605_137_419_779_525_190_365_032_198_020_108_764_738_368_682_531_025_183_377_533_908_861_426_184_800_374_008_082_238_104_076_468_878_471_647_552_945_326_947_661_700_424_461_063_311_238_021_134_588_694_532_200_116_564_076_327_023_074_292_426_051_582_811_070_387_018_345_324_567_635_625_951_430_032_037_432_740_780_879_056_283_663_406_965_030_844_225_855_967_039_271_869_461_158_513_793_386_475_699_748_568_670_079_823_960_604_393_478_850_861_649_260_304_945_061_743_412_365_828_352_144_806_726_676_841_807_083_754_862_211_408_236_579_802_961_200_027_441_324_438_432_402_331_257_403_545_019_352_428_776_430_880_232_850_855_886_089_962_774_458_164_680_857_875_115_807_014_743_763_867_976_955_049_991_643_998_284_357_290_415_378_143_438_847_303_484_261_903_388_841_494_031_366_139_854_257_635_577_105_335_580_206_622_185_577_060_082_551_288_893_332_226_436_281_984_838_613_239_570_676_191_409_638_533_832_374_343_758_830_859_233_722_284_644_287_996_245_605_476_932_428_998_432_652_677_378_373_173_288_063_210_753_211_238_680_604_674_708_428_051_166_488_709_084_770_291_208_161_104_912_555_598_322_366_244_868_556_651_402_684_641_209_694_982_590_565_519_216_188_104_341_226_838_996_283_071_654_868_525_536_914_850_299_539_675_503_954_938_371_853_405_900_096_187_489_473_992_880_432_496_373_165_753_803_673_586_710_175_783_994_818_471_798_498_246_948_060_532_081_996_066_183_434_012_476_096_639_519_778_021_441_199_752_546_704_080_608_499_344_178_256_285_092_726_523_709_898_651_539_462_193_004_607_364_507_926_212_975_917_698_293_892_367_015_170_992_091_531_567_814_439_791_248_475_706_237_804_600_009_918_293_321_306_880_570_046_591_458_387_208_088_016_887_445_835_557_926_258_465_124_763_087_148_566_313_528_934_166_117_490_617_526_671_492_672_176_128_330_845_273_936_469_244_582_892_571_388_877_839_056_300_482_483_799_839_692_029_222_215_486_145_902_373_478_222_682_521_639_957_440_801_727_144_146_179_559_226_175_083_889_020_074_169_926_238_300_282_286_249_284_182_671_243_405_751_424_188_569_994_272_331_606_998_712_986_882_771_820_617_214_453_142_574_944_015_066_139_463_169_197_629_181_506_579_745_526_236_191_224_848_063_890_033_669_074_365_989_226_349_564_114_665_503_062_965_960_199_720_636_202_603_521_917_776_740_668_777_463_549_375_318_899_587_866_282_125_469_797_102_065_747_232_721_372_918_144_666_659_421_872_003_474_508_942_830_911_535_189_271_114_287_108_376_159_222_380_276_605_327_823_351_661_555_149_369_375_778_466_670_145_717_971_901_227_117_812_780_450_240_026_384_758_788_339_396_817_962_950_690_798_817_121_690_686_929_538_248_529_830_023_476_068_454_114_178_139_110_648_560_236_549_754_227_497_231_007_615_131_870_024_053_910_510_913_817_843_721_791_422_528_587_432_098_524_957_878_034_683_703_337_818_421_444_017_138_688_124_249_984_418_618_129_271_198_533_315_382_567_321_870_421_530_631_197_748_535_214_670_955_334_626_336_610_864_667_332_292_409_879_849_256_691_109_516_143_618_601_548_909_740_241_913_509_623_043_612_196_128_165_950_518_666_022_030_715_613_684_732_364_660_868_905_014_263_913_906_515_063_908_199_378_852_318_365_059_897_299_125_404_479_443_425_166_774_299_659_811_849_233_151_555_272_883_274_028_352_688_442_408_752_811_283_289_980_625_912_673_699_546_247_341_543_333_500_147_231_430_612_750_390_307_397_135_252_069_338_173_843_322_950_701_049_061_867_539_433_130_784_798_015_655_130_384_758_155_685_236_218_010_419_650_255_596_181_934_986_315_913_233_036_096_461_905_990_236_112_681_196_023_441_843_363_334_594_927_631_946_101_716_652_913_823_717_182_394_299_216_272_538_461_776_065_694_542_297_877_071_383_198_817_036_964_588_689_811_863_210_976_900_355_735_884_624_464_835_706_291_453_052_757_101_278_872_027_965_364_479_724_025_405_448_132_748_391_794_128_826_423_835_171_949_197_209_797_145_936_887_537_198_729_130_831_738_033_911_016_128_547_415_377_377_715_951_728_084_111_627_597_186_384_924_222_802_373_441_925_469_991_983_672_192_131_287_035_585_307_966_942_713_416_391_033_882_754_318_613_643_490_100_943_197_409_047_331_014_476_299_861_725_424_423_355_612_237_435_715_825_933_382_804_986_243_892_498_222_780_715_951_762_757_847_109_475_119_033_482_241_412_025_182_688_713_728_193_104_253_478_196_128_440_176_479_531_505_057_110_722_974_314_569_915_223_451_643_121_848_657_575_786_528_197_564_843_508_958_384_722_923_534_559_464_521_215_831_657_751_471_298_708_225_909_292_655_638_836_651_120_681_943_836_904_116_252_668_710_044_560_243_704_200_663_709_001_941_185_557_160_472_044_643_696_932_850_060_046_928_140_507_119_069_261_393_993_902_735_534_545_567_470_314_903_886_022_024_639_948_260_501_762_431_969_305_640_666_366_626_090_207_048_887_438_898_907_498_152_865_444_381_862_917_382_901_051_820_869_936_382_661_868_303_915_273_264_581_286_782_806_601_337_500_096_593_364_625_146_091_723_180_312_930_347_877_421_234_679_118_454_791_311_109_897_794_648_216_922_505_629_399_956_793_483_801_699_157_439_700_537_542_134_485_874_586_856_047_286_751_065_423_341_893_839_099_110_586_465_595_113_646_061_055_156_838_541_217_459_801_807_133_163_612_573_079_611_168_343_863_767_667_307_354_583_494_789_788_316_330_129_240_800_836_356_825_939_157_113_130_978_030_516_441_716_682_518_346_573_675_934_198_084_958_947_940_983_292_500_086_389_778_563_494_693_212_473_426_103_062_713_745_077_286_156_922_596_628_573_857_905_533_240_641_849_018_451_328_284_632_709_269_753_830_867_308_409_142_247_659_474_439_973_348_130_810_986_399_417_379_789_657_010_687_026_734_161_967_196_591_599_588_537_834_822_988_270_125_605_842_365_589_539_690_306_474_965_584_147_981_310_997_157_542_043_256_395_776_070_485_100_881_578_291_408_250_777_738_559_790_129_129_407_309_462_785_944_505_859_412_273_194_812_753_225_152_324_801_503_466_519_048_228_961_406_646_890_305_102_510_916_237_770_448_486_230_229_488_966_711_380_555_607_956_620_732_449_373_374_027_836_767_300_203_011_615_227_008_921_843_515_652_121_379_215_748_206_859_356_920_790_214_502_277_133_099_987_729_459_596_952_817_044_582_181_956_080_965_811_702_798_062_669_891_205_061_560_742_325_686_842_271_306_295_009_864_421_853_470_810_407_128_917_646_906_550_836_129_916_694_778_023_822_502_789_667_843_489_199_409_657_361_704_586_786_242_554_006_942_516_693_979_292_624_714_524_945_408_858_422_726_153_755_260_071_904_336_329_196_375_777_502_176_005_195_800_693_847_635_789_586_878_489_536_872_122_898_557_806_826_518_192_703_632_099_480_155_874_455_575_175_312_736_471_421_295_536_494_084_385_586_615_208_012_115_079_075_068_553_344_489_258_693_283_859_653_013_272_046_970_694_571_546_959_353_658_571_788_894_862_333_292_465_202_735_853_188_533_370_948_455_403_336_565_356_988_172_582_528_918_056_635_488_363_743_793_348_411_845_580_168_331_827_676_834_646_291_995_605_513_470_039_147_876_808_640_322_629_616_641_560_667_508_153_710_646_723_108_461_964_247_537_490_553_744_805_318_226_002_710_216_400_980_584_497_526_023_035_640_038_083_472_053_149_941_172_965_736_785_066_421_400_842_696_497_103_241_919_182_121_213_206_939_769_143_923_368_374_709_228_267_738_708_132_236_680_086_924_703_491_586_840_991_153_098_315_412_063_566_123_187_504_305_467_536_983_230_827_966_457_417_620_806_593_177_265_685_841_681_837_966_106_144_963_432_544_111_706_941_700_222_657_817_358_351_259_821_080_769_101_961_052_229_263_879_745_049_019_254_311_900_620_561_906_577_452_416_191_913_187_533_984_049_343_976_823_310_298_465_893_318_373_015_809_592_522_829_206_820_862_230_332_585_280_119_266_496_314_441_316_442_773_003_237_792_274_712_330_696_417_149_945_532_261_035_475_145_631_290_668_854_345_426_869_788_447_742_981_777_493_710_117_614_651_624_183_616_680_254_815_296_335_308_490_849_943_006_763_654_806_102_940_094_693_750_609_845_588_558_043_970_485_914_449_584_445_079_978_497_045_583_550_685_408_745_163_316_464_118_083_123_079_704_389_849_190_506_587_586_425_810_738_422_420_591_191_941_674_182_490_452_700_288_263_983_057_950_057_341_711_487_031_187_142_834_184_499_153_456_702_915_280_104_485_145_176_055_306_971_441_761_368_582_384_102_787_659_324_662_689_978_418_319_620_312_262_421_177_391_477_208_004_883_578_333_569_204_533_935_953_254_564_897_028_558_589_735_505_751_235_129_536_540_502_842_081_022_785_248_776_603_574_246_366_673_148_680_279_486_052_445_782_673_626_230_852_978_265_057_114_624_846_595_914_210_278_122_788_941_448_163_994_973_881_884_622_768_244_851_622_051_817_076_722_169_863_265_701_654_316_919_742_651_230_041_757_329_904_473_537_672_536_845_792_754_365_412_826_553_581_858_046_840_069_367_718_605_020_070_547_247_548_400_805_530_424_951_854_495_267_247_261_347_318_174_742_180_078_574_693_465_447_136_036_975_884_118_029_408_039_616_746_946_288_540_679_172_138_601_225_419_503_819_704_538_417_268_006_398_820_656_328_792_839_582_708_510_919_958_839_448_297_775_647_152_026_132_871_089_526_163_417_707_151_642_899_487_953_564_854_553_553_148_754_978_134_009_964_854_498_635_824_847_690_590_033_116_961_303_766_127_923_464_323_129_706_628_411_307_427_046_202_032_013_368_350_385_425_360_313_636_763_575_212_604_707_425_311_209_233_402_837_482_949_453_104_727_418_969_287_275_572_027_615_272_268_283_376_741_393_425_652_653_283_068_469_997_597_097_750_005_560_889_932_685_025_049_212_884_068_274_139_881_631_540_456_490_350_775_871_680_074_055_685_724_021_758_685_439_053_228_133_770_707_415_830_756_269_628_316_955_687_424_060_527_726_485_853_050_611_356_384_851_965_918_968_649_596_335_568_216_975_437_621_430_778_665_934_730_450_164_822_432_964_891_270_709_898_076_676_625_671_517_269_062_058_815_549_666_382_573_829_274_182_082_278_960_684_488_222_983_394_816_670_984_039_024_283_514_306_813_767_253_460_126_007_269_262_969_468_672_750_794_346_190_439_996_618_979_611_928_750_519_442_356_402_644_303_271_737_341_591_281_496_056_168_353_988_188_569_484_045_342_311_424_613_559_925_272_330_064_881_627_466_723_523_751_234_311_893_442_118_885_085_079_358_163_848_994_487_544_756_331_689_213_869_675_574_302_737_953_785_262_542_329_024_881_047_181_939_037_220_666_894_702_204_258_836_895_840_939_998_453_560_948_869_946_833_852_579_675_161_882_159_410_981_624_918_741_813_364_726_965_123_980_677_561_947_912_557_957_446_471_427_868_624_053_750_576_104_204_267_149_366_084_980_238_274_680_575_982_591_331_006_919_941_904_651_906_531_171_908_926_077_949_119_217_946_407_355_129_633_864_523_035_673_345_588_033_313_197_080_365_457_184_791_550_432_654_899_559_705_862_888_286_866_606_618_021_882_248_602_144_999_973_122_164_138_170_653_480_175_510_438_406_624_412_822_803_616_648_904_257_377_640_956_326_482_825_258_407_669_045_608_439_490_325_290_526_337_532_316_509_087_681_336_614_242_398_309_530_806_549_661_879_381_949_120_033_919_489_494_065_132_398_816_642_080_088_395_554_942_237_096_734_840_072_642_705_701_165_089_075_196_155_370_186_264_797_456_381_187_856_175_457_113_400_473_810_762_763_014_953_309_735_174_180_655_479_112_660_938_034_311_378_532_532_883_533_352_024_934_365_979_129_341_284_854_970_946_826_329_075_830_193_072_665_337_782_559_314_331_110_963_848_053_940_859_283_988_907_796_210_479_847_919_686_876_539_987_477_095_912_788_727_475_874_439_806_779_824_968_278_272_200_926_449_944_559_380_414_608_770_641_941_810_440_758_269_805_688_038_949_654_616_587_983_904_660_587_645_341_810_289_907_194_293_021_774_519_976_104_495_043_196_841_503_455_514_044_820_928_933_378_657_363_052_830_619_990_077_748_726_922_998_608_279_053_171_691_876_578_860_908_941_817_057_993_404_890_218_441_559_791_092_676_862_796_597_583_952_483_926_734_883_634_745_651_687_016_166_240_642_424_241_228_961_118_010_615_682_342_539_392_180_052_483_454_723_779_219_911_228_595_914_191_877_491_793_823_340_010_078_128_326_506_710_281_781_396_029_120_914_720_100_947_878_752_551_263_372_884_222_353_869_490_067_927_664_511_634_758_101_193_875_319_657_242_121_476_038_284_774_774_571_704_578_610_417_385_747_911_301_908_583_877_890_152_334_343_013_005_282_797_038_580_359_815_182_929_600_305_682_612_091_950_943_737_325_454_171_056_383_887_047_528_950_563_961_029_843_641_360_935_641_632_589_408_137_981_511_693_338_619_797_339_821_670_761_004_607_980_096_016_024_823_096_943_043_806_956_620_123_213_650_140_549_586_250_615_282_588_033_022_908_385_812_478_469_315_720_323_233_601_899_469_437_647_726_721_879_376_826_431_828_382_603_564_520_699_468_630_216_048_874_528_424_363_593_558_622_333_506_235_945_002_890_558_581_611_275_341_783_750_455_936_126_130_852_640_828_051_213_873_177_490_200_249_552_738_734_585_956_405_160_830_583_053_770_732_533_971_552_620_444_705_429_573_538_361_113_677_523_169_972_740_292_941_674_204_423_248_113_875_075_631_319_078_272_188_864_053_374_694_213_842_169_928_862_940_479_635_305_150_560_788_126_366_206_497_231_257_579_019_598_873_041_195_626_227_343_728_900_516_561_111_094_111_745_277_965_482_790_471_250_581_999_077_498_063_821_559_376_885_546_498_822_938_985_408_291_325_129_076_478_386_322_494_781_016_753_491_693_489_288_104_203_015_610_283_386_143_827_378_160_946_341_335_383_578_340_765_314_321_417_150_655_877_547_820_252_454_780_657_301_342_277_470_616_744_241_968_952_613_164_274_104_695_474_621_483_756_288_299_771_804_186_785_084_546_965_619_150_908_695_874_251_184_435_837_306_590_951_460_980_451_247_409_411_373_899_927_822_492_983_367_796_011_015_387_096_129_749_705_566_301_637_307_202_750_734_759_922_943_792_393_824_427_421_186_158_236_161_317_886_392_553_095_117_188_421_298_508_307_238_259_729_144_142_251_579_403_883_011_359_083_331_651_858_234_967_221_259_621_812_507_058_113_759_495_525_022_747_274_674_369_887_131_926_670_769_299_199_084_467_161_228_738_858_457_584_622_726_573_330_753_735_572_823_951_616_964_175_198_675_012_681_745_429_323_738_294_143_824_814_377_139_861_906_716_657_572_945_807_804_820_559_511_881_687_188_075_212_971_832_636_442_155_336_787_751_274_766_940_790_117_057_509_819_575_084_563_565_217_389_544_179_875_074_523_854_455_200_133_572_033_332_379_895_074_393_905_312_918_212_255_259_833_790_909_463_630_202_185_353_848_854_825_062_897_715_616_963_860_712_382_771_725_621_313_460_549_401_770_413_581_731_931_763_370_136_332_252_819_127_547_191_443_450_920_711_848_838_366_818_174_263_342_949_611_870_091_503_049_165_339_464_763_717_766_439_120_798_347_494_627_397_822_171_502_090_670_190_302_469_762_151_278_521_956_142_070_806_461_631_373_236_517_853_976_292_092_025_500_288_962_012_970_141_379_640_038_055_734_949_269_073_535_145_961_208_674_796_547_733_692_958_773_628_635_660_143_767_964_038_430_796_864_138_563_447_801_328_261_284_589_184_898_528_048_048_844_180_821_639_423_974_014_362_903_481_665_458_114_454_366_460_032_490_618_763_039_502_356_402_044_530_748_210_241_366_895_196_644_221_339_200_757_479_128_683_805_175_150_634_662_569_391_937_740_283_512_075_666_260_829_890_491_877_287_833_852_178_522_792_045_771_846_965_855_278_790_447_562_192_663_992_008_409_302_075_673_925_363_735_628_390_829_817_577_902_153_202_106_409_617_373_283_598_494_066_652_141_198_183_810_884_515_459_772_895_164_572_131_897_797_907_491_941_013_148_368_544_639_616_904_607_030_107_596_818_933_741_217_575_988_165_127_000_761_262_789_169_510_406_315_857_637_534_787_420_070_222_051_070_891_257_612_361_658_026_806_815_858_499_852_631_465_878_086_616_800_733_264_676_830_206_391_697_203_064_894_405_628_195_406_190_685_242_003_053_463_156_621_891_327_309_069_687_353_181_641_094_514_288_036_605_995_220_248_248_886_711_554_429_104_721_929_134_248_346_438_705_368_508_648_749_099_178_812_670_565_665_387_191_049_721_820_042_371_492_740_164_460_943_459_845_392_536_706_132_210_616_533_085_662_021_188_968_234_005_752_675_486_101_476_993_688_738_209_584_552_211_571_923_479_686_888_160_853_631_615_862_880_150_395_949_418_529_489_227_074_410_828_207_169_303_387_818_084_936_204_018_255_222_271_010_985_653_444_817_207_470_756_019_245_915_599_431_072_949_578_197_878_590_578_940_052_540_122_867_517_142_511_184_356_437_184_053_563_024_181_225_473_266_093_302_710_397_968_091_064_939_272_722_683_035_410_467_632_591_355_279_683_837_705_019_855_234_621_222_858_410_557_119_921_731_717_969_804_339_317_707_750_755_627_056_047_831_779_844_447_637_560_254_637_033_369_247_114_220_815_519_973_691_371_975_163_241_302_748_712_199_863_404_548_248_524_570_118_553_342_675_264_715_978_310_731_245_663_429_805_221_455_494_156_252_724_028_915_333_354_349_341_217_862_037_007_260_315_279_870_771_872_491_234_494_477_147_909_520_734_761_385_425_485_311_552_773_301_030_342_476_835_865_496_093_722_324_007_154_518_129_732_692_081_058_424_090_557_725_645_803_681_462_234_493_189_708_138_897_143_299_831_347_617_799_679_712_453_782_310_703_739_151_473_878_692_119_187_566_700_319_321_281_896_803_322_696_594_459_286_210_607_438_827_416_919_465_162_267_632_540_665_070_881_071_030_394_178_860_564_893_769_816_734_159_025_925_194_611_823_642_945_652_669_372_203_155_504_700_213_598_846_292_758_012_527_715_422_016_629_954_863_130_324_912_311_029_627_923_723_899_766_416_803_497_141_226_527_931_907_636_326_136_814_145_516_376_656_559_839_788_489_381_733_082_668_779_901_962_886_932_296_597_379_951_931_621_187_215_455_287_394_170_243_669_885_593_888_793_316_744_533_363_119_541_518_404_088_283_815_193_421_234_122_820_030_950_313_341_050_704_760_159_987_985_472_529_190_665_222_479_319_715_440_331_794_836_837_373_220_821_885_773_341_623_856_441_380_700_541_913_530_245_943_913_502_554_531_886_454_796_252_260_251_762_928_374_330_465_102_361_057_583_514_550_739_443_339_610_216_229_675_461_415_781_127_197_001_738_611_494_279_501_411_253_280_621_254_775_810_512_972_088_465_263_158_094_806_633_687_670_147_310_733_540_717_710_876_615_935_856_814_098_212_967_730_759_197_382_973_441_445_256_688_770_855_324_570_888_958_320_993_823_432_102_718_224_114_763_732_791_357_568_615_421_252_849_657_903_335_093_152_776_925_505_845_644_010_552_192_644_505_312_073_756_287_744_998_163_646_332_835_816_140_330_175_813_967_359_427_327_690_448_920_361_880_386_754_955_751_806_890_058_532_927_201_493_923_500_525_845_146_706_982_628_548_257_883_267_398_735_220_457_228_239_290_207_144_822_219_885_587_102_896_991_935_873_074_277_815_159_757_620_764_023_951_243_860_202_032_596_596_250_212_578_349_957_710_085_626_386_118_233_813_318_509_014_686_577_064_010_676_278_617_583_772_772_895_892_746_039_403_930_337_271_873_850_536_912_957_126_715_066_896_688_493_880_885_142_943_609_962_012_966_759_079_225_082_275_313_812_849_851_526_902_931_700_263_136_328_942_095_797_577_959_327_635_531_162_066_753_488_651_317_323_872_438_748_063_513_314_512_644_889_967_589_828_812_925_480_076_425_186_586_490_241_111_127_301_357_197_181_381_602_583_178_506_932_244_007_998_656_635_371_544_088_454_866_393_181_708_395_735_780_799_059_730_839_094_881_804_060_935_959_190_907_473_960_904_410_150_516_321_749_681_412_100_765_719_177_483_767_355_751_000_733_616_922_386_537_429_079_457_803_200_042_337_452_807_566_153_042_929_014_495_780_629_634_138_383_551_783_599_764_708_851_349_004_856_973_697_965_238_695_845_994_595_592_090_709_058_956_891_451_141_412_684_505_462_117_945_026_611_750_166_928_260_250_950_770_778_211_950_432_617_383_223_562_437_601_776_799_362_796_099_368_975_191_394_965_033_358_507_155_418_436_456_852_616_674_243_688_920_371_037_495_328_425_927_131_610_537_834_980_740_739_158_633_817_967_658_425_258_036_737_206_469_351_248_652_238_481_341_663_808_061_505_704_829_059_890_696_451_936_440_018_597_120_425_723_007_316_410_009_916_987_524_260_377_362_177_763_430_621_616_744_884_930_810_929_901_009_517_974_541_564_251_204_822_086_714_586_849_255_132_444_266_777_127_863_728_211_331_536_224_301_091_824_391_243_380_214_046_242_223_349_153_559_516_890_816_288_487_989_988_273_630_445_372_432_174_280_215_755_777_967_021_666_317_047_969_728_172_483_392_841_015_642_274_507_271_779_269_399_929_740_308_072_770_395_013_581_545_142_494_049_026_536_105_825_409_373_114_653_104_943_382_484_379_718_606_937_214_444_600_826_798_002_471_229_489_405_761_853_892_203_425_608_302_697_052_876_621_377_373_594_394_224_114_707_074_072_902_725_461_307_358_541_745_691_419_446_487_624_357_682_397_065_703_184_168_467_540_733_466_346_293_673_983_620_004_041_400_714_054_277_632_480_132_742_202_685_393_698_869_787_607_009_590_048_684_650_626_771_363_070_979_821_006_557_285_101_306_601_010_780_633_743_344_773_073_478_653_881_742_681_230_743_766_066_643_312_775_356_466_578_603_715_192_922_768_440_458_273_283_243_808_212_841_218_776_132_042_460_464_900_801_054_731_426_749_260_826_922_155_637_405_486_241_717_031_027_919_996_942_645_620_955_619_816_454_547_662_045_022_411_449_404_749_349_832_206_807_191_352_767_986_747_813_458_203_859_570_413_466_177_937_228_534_940_031_631_599_544_093_684_089_572_533_438_702_986_717_829_770_373_332_806_801_764_639_502_090_023_941_931_499_115_009_105_276_821_119_510_999_063_166_150_311_585_582_835_582_607_179_410_052_528_583_611_369_961_303_442_790_173_811_787_412_061_288_182_062_023_263_849_861_515_656_451_230_047_792_967_563_618_345_768_105_043_341_769_543_067_538_041_113_928_553_792_529_241_347_339_481_050_532_025_708_728_186_307_291_158_911_335_942_014_761_872_664_291_564_036_371_927_602_306_283_840_650_425_441_742_335_464_549_987_055_318_726_887_926_424_102_147_363_698_625_463_747_159_744_354_943_443_899_730_051_742_525_110_877_357_886_390_946_812_096_673_428_152_585_919_924_857_640_488_055_071_329_814_299_359_911_463_239_919_113_959_926_752_576_359_007_446_572_810_191_805_841_807_342_227_734_721_397_723_218_231_771_716_916_400_108_826_112_549_093_361_186_780_575_722_391_018_186_168_549_108_500_885_272_274_374_212_086_524_852_372_456_248_697_662_245_384_819_298_671_129_452_945_515_497_030_585_919_307_198_497_105_414_181_636_968_976_131_126_744_027_009_648_667_545_934_567_059_936_995_464_500_558_921_628_047_976_365_686_133_316_563_907_395_703_272_034_389_175_415_267_500_915_011_198_856_872_708_848_195_531_676_931_681_272_892_143_031_376_818_016_445_477_367_518_353_497_857_924_276_463_354_162_433_601_125_960_252_109_501_612_264_110_346_083_465_648_235_597_934_274_056_868_849_224_458_745_493_776_752_120_324_703_803_035_491_157_544_831_295_275_891_939_893_680_876_327_685_438_769_557_694_881_422_844_311_998_595_700_727_521_393_176_837_831_770_339_130_423_060_958_999_137_314_684_569_010_422_095_161_967_070_506_420_256_733_873_446_115_655_276_175_992_727_151_877_660_010_238_944_760_539_789_516_945_708_802_728_736_225_121_076_224_091_810_066_700_883_474_737_605_156_285_533_943_565_843_756_271_241_244_457_651_663_064_085_939_507_947_550_920_463_932_245_202_535_463_634_444_791_755_661_725_962_187_199_279_186_575_490_857_852_950_012_840_229_035_061_514_937_310_107_009_446_151_011_613_712_423_761_426_722_541_732_055_959_202_782_129_325_725_947_146_417_224_977_321_316_381_845_326_555_279_604_270_541_871_496_236_585_252_458_648_933_254_145_062_642_337_885_651_464_670_604_298_564_781_968_461_593_663_288_954_299_780_722_542_264_790_400_616_019_751_975_007_460_545_150_060_291_806_638_271_497_016_110_987_951_336_633_771_378_434_416_194_053_121_445_291_855_180_136_575_558_667_615_019_373_029_691_932_076_120_009_255_065_081_583_275_508_499_340_768_797_252_369_987_023_567_931_026_804_136_745_718_956_641_431_852_679_054_717_169_962_990_363_015_545_645_090_044_802_789_055_701_968_328_313_630_718_997_699_153_166_679_208_958_768_572_290_600_915_472_919_636_381_673_596_673_959_975_710_326_015_571_920_237_348_580_521_128_117_458_610_065_152_598_883_843_114_511_894_880_552_129_145_775_699_146_577_530_041_384_717_124_577_965_048_175_856_395_072_895_337_539_755_822_087_777_506_072_339_445_587_895_905_719_156_736
@pytest.mark.parametrize(
"a,b,expected",
[
(2, 2, 4),
(2, 3, 16),
(2, 4, 65536),
# The numbers start to grow very quickly.
(2, 5, JFC),
(3, 2, 27),
(3, 3, 7_625_597_484_987),
],
)
def test_up_2(a, b, expected):
"""These numbers grow a lot faster than exponentiation."""
assert up_n(2, a, b) == expected
@pytest.mark.parametrize("a,b,expected", [(2, 2, 4), (2, 3, 65536), (3, 2, 7_625_597_484_987)])
def test_up_3(a, b, expected):
"""I only have 16GB of RAM, so can't test 2↑↑↑4 or 3↑↑↑3."""
assert up_n(3, a, b) == expected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment