logarithmic order O(logn)

Run Settings
LanguagePython
Language Version
Run Command
def logarithmic(n): count = 0 while n>1: n=n/2; count+=1; return count; print(logarithmic(10))
Editor Settings
Theme
Key bindings
Full width
Lines