Master the Coding Interview: Data Structures + Algorithms

Master the Coding Interview: Data Structures + Algorithms | Udemy

udemy上買的,為了熟悉演算法買的課。教得還不錯,英文講得也清楚!

《Big O and Scalability》
JavaScript有提供一個方法來mesure程式跑了多久。

let t0 = performance.now();
let t1 = performance.now();
console.log( t1-t0 + 'milliseconds')

比較兩台電腦哪個跑得比較快是沒意義的,因為電腦的效能不一樣。這時候就要看Big O了。
a runtime is simply how long something takes to run