From 676b55c4c58c7698965a9a2c4476dc7aafaa3306 Mon Sep 17 00:00:00 2001 From: Mitch M Date: Mon, 20 Jan 2025 17:53:16 -0800 Subject: [PATCH] Update AnAnagramDetectionExample.rst Change unintended code comment into division in expression. --- _sources/AlgorithmAnalysis/AnAnagramDetectionExample.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sources/AlgorithmAnalysis/AnAnagramDetectionExample.rst b/_sources/AlgorithmAnalysis/AnAnagramDetectionExample.rst index 5e819885..a43d54d8 100644 --- a/_sources/AlgorithmAnalysis/AnAnagramDetectionExample.rst +++ b/_sources/AlgorithmAnalysis/AnAnagramDetectionExample.rst @@ -450,7 +450,7 @@ problem. int count = 0; while (i > 0){ count = count + 1; - i = i // 2; + i = i / 2; } return 0; }