All public logs
Combined display of all available logs of Stockhub. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:56, 11 December 2022 Zoran talk contribs deleted page Module:Exponential search (Updating)
- 01:49, 16 October 2022 109.180.50.150 talk created page Module:Exponential search (Created page with "-- This module provides a generic exponential search algorithm. local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, upper) else i = i * 2 end return search(testFunc, i, lower, upper) else...")