From c6201e027305900a7cf84aff2e47b9f8f418b9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=28=E4=B8=89=E8=A5=BF=E7=8C=B4=29=20OurB?= =?UTF-8?q?igBook=2Ecom=20sponsor=20me=3A=20cirosantilli=2Ecom/sponsor=2C?= =?UTF-8?q?=20opinions=20my=20own=202020=E5=86=A0=E7=8A=B6=E7=97=85?= =?UTF-8?q?=E6=AF=92=E5=AE=A1=E6=9F=A5=20=EF=BC=8C2020=E9=83=9D=E6=B5=B7?= =?UTF-8?q?=E4=B8=9C=20=EF=BC=8C2018=E6=96=B0=E7=96=86=E6=94=B9=E9=80=A0?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=EF=BC=8C1989=E5=85=AD=E5=9B=9B=E4=BA=8B?= =?UTF-8?q?=E4=BB=B6=EF=BC=8C1999=E6=B3=95=E8=BD=AE=E5=8A=9F=20=EF=BC=8C20?= =?UTF-8?q?19=20996=2EICU=2C=202018=E5=8C=85=E5=AD=90=E9=9C=B2=E5=AE=AA?= =?UTF-8?q?=EF=BC=8C2015=20709=E5=A4=A7=E6=8A=93=E6=8D=95=EF=BC=8C2015?= =?UTF-8?q?=E5=B7=B4=E6=8B=BF=E9=A9=AC=E6=96=87=E4=BB=B6=20=E9=82=93?= =?UTF-8?q?=E5=AE=B6=E8=B4=B5=EF=BC=8C2017=E4=BD=8E=E7=AB=AF=E4=BA=BA?= =?UTF-8?q?=E5=8F=A3=EF=BC=8C2008=E8=A5=BF=E8=97=8F=E9=AA=9A=E4=B9=B1scrip?= =?UTF-8?q?talert=281=29/script?= Date: Sun, 11 Jan 2026 17:32:43 +0000 Subject: [PATCH] Fix exponentiation operator in compute function call Another cute one discovered like the last --- Finished Problems/pe00757 - Stealthy Numbers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Finished Problems/pe00757 - Stealthy Numbers.py b/Finished Problems/pe00757 - Stealthy Numbers.py index b6399ce..7375d7c 100644 --- a/Finished Problems/pe00757 - Stealthy Numbers.py +++ b/Finished Problems/pe00757 - Stealthy Numbers.py @@ -63,5 +63,5 @@ def compute1(limit): #Faster for lower numbers return len(a) if __name__ == "__main__": - print(compute(10^14)) - print("--- %s seconds ---" % (time.time() - start_time)) \ No newline at end of file + print(compute(10**14)) + print("--- %s seconds ---" % (time.time() - start_time))