DEV Community

Discussion on: What is O(log n)? Learn Big O Logarithmic Time Complexity

Collapse
 
omicron666 profile image
Omicron

O(log n) is actually not very common.
You have fast exponentiation if you wanna explore.
At best, you'll encounter O(n*log n) in general for algorithms.

Collapse
 
hpj1992 profile image
Harshit

Thanks.