Skip to content

Instantly share code, notes, and snippets.

View PreciousNyasulu's full-sized avatar
🦀
uuuhm

Precious Nyasulu PreciousNyasulu

🦀
uuuhm
View GitHub Profile
@anaclumos
anaclumos / RH.java
Last active October 25, 2024 09:02
Silicon Valley S06 E04 Richard Hendricks Sorted List Brute Force Search Code
(R. Hendricks 112) int index = 0;
(R. Hendricks 113) while (!element.equals(sortedList.get(index))
(R. Hendricks 114) && sortedList.size() > ++index);
(R. Hendricks 115) return index < sortedList.size() ? index : -1;