Skip to content

sample 001 and note file created. #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions section-big-o/note.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/** importance links and note **/

/***
* note
***/
1. Big O and Scalability.
we see that as our input grew, our function Find `Nemo` became slower and slower and slower.
Our runtime, how long it takes to run a certain problem through a function, increased.
21 changes: 21 additions & 0 deletions section-big-o/sample-001.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// #1 -- For loop in Javascript
const fish = ['dory', 'bruce', 'marlin', 'nemo'];
const nemo = ['nemo'];
const everyone = ['dory', 'bruce', 'marlin', 'nemo', 'gill', 'bloat', 'nigel', 'squirt', 'darla', 'hank'];
const large = new Array(10).fill('nemo');


function findNemo(array) {
let startTime = performance.now();
for (let index = 0; index < array.length; index++) {
const element = array[index];
if (element === 'nemo') {
console.log('Found NEMO');
}
}
let endTime = performance.now();
console.log(`Call to find Nemo took ${endTime - startTime} milliseconds.`)

}

findNemo(nemo)