Skip to content

Instantly share code, notes, and snippets.

View FlytoTheSpace's full-sized avatar
🛰️
Fly High above everthing!

FlytoTheSpace FlytoTheSpace

🛰️
Fly High above everthing!
View GitHub Profile
@FlytoTheSpace
FlytoTheSpace / binarysearch.ts
Last active October 8, 2024 12:54
A Binary Search Algorithm
/*
const list: number[] = []
for(let i = 1; i<=111002; i++){
list.push(i)
}
const start = Date.now()
*/
// Main Search Function