Talk:Square root by hand

From Rosetta Code
Revision as of 20:28, 12 October 2020 by Enter your username (talk | contribs) (Pointed out shortcomings of VB.NET version (and others translated from it))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Weaknesses of initial VB.NET algorithm

1. Depends on BigIntegers, which start consuming a considerable amount of memory as the number of digits escalates. 2. Computes and checks 1 to ten "next" digits (average 5?) instead of predicting a guess, then checking it once or twice.