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; }