chore: remove unnecessary code (#1531)

Co-authored-by: IcarusTheFly <IcarusTheFly@users.noreply.github.com>
This commit is contained in:
Omar Ferreiro
2023-10-14 18:53:23 +02:00
committed by GitHub
parent f77a970c78
commit 628c5aeb5c

View File

@ -36,11 +36,4 @@ export function interpolationSearch(arr, key) {
}
return -1
}
// const arr = [2, 6, 8, 10, 12, 14, 16, 18, 20, 22, 26, 34, 39]
// interpolationSearch(arr, 2)
// interpolationSearch(arr, 12)
// interpolationSearch(arr, 1000)
// interpolationSearch(arr, 39)
}