0(1)

Run Settings
LanguageJavaScript
Language Version
Run Command
// const nemo = ['nemo']; // const everyone = ['dory','bruce', 'marlin', 'nemo', 'gill','bloat', 'nigel', // 'squirt','darla', 'hank']; // //Big O Notation // function findNemo(array) { // let t0 = performance.now(); // for (let i = 0; i < array.length; ++i) { // if (array[i] ==='nemo') { // console.log('Found NEMO'); // } // } // let t1 = performance.now(); // } // findNemo(large); //0(n) --- Linear Time const boxes = [0,1,2,3,4,5]; function logFirstTwoBoxes(boxes) { console.log(boxes[0]); //0(1) --- Constant Time console.log(boxes[1]);//0(1) --- Constant Time } logFirstTwoBoxes(boxes); //0(2) --- Constant Time
Editor Settings
Theme
Key bindings
Full width
Lines