Revision history of "CheckWordIsValid uses a linear search, program a binary search instead"

Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 14:07, 19 February 2018Charley (talk | contribs). . (1,119 bytes) (+1,119). . (Created page with "Here's how to create a binary search: <syntaxhighlight lang=C#> private static bool CheckWordIsValidBinary(string Word, List<string> AllowedWords) { bool...")