Skip to content
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

first pull reqs #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ __________________



## [html: Basic Questions for Begginers](http://www.thatjsdude.com/interview/html.html)
## [html: Basic Questions for Beginners](http://www.thatjsdude.com/interview/html.html)

15 basic questions and asnwers
______
Expand Down Expand Up @@ -219,4 +219,4 @@ __________________
4. Graph and high order data structure in JavaScript
___________________

Inpsired by, [darcyclarke](https://github.com/darcyclarke/Front-end-Developer-Interview-Questions), [css-tricks](http://css-tricks.com/interview-questions-css/), [david shariff](https://gist.github.com/jesspoemape/87665d65cde3980485ec27cef1602a0d) and some google results. If you want to add any question to this let me know.
Inpsired by, [darcyclarke](https://github.com/darcyclarke/Front-end-Developer-Interview-Questions), [css-tricks](http://css-tricks.com/interview-questions-css/), [david shariff] and some google results. If you want to add any question to this let me know.
1 change: 1 addition & 0 deletions js1.html
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ <h2>4. Greatest Common Divisor</h2>
</code></pre>
<h3>fancy algorithm</h3>
<p><strong>Sorry.</strong> can't explain it. As i myself dont understand it 80% of the times. my algorithm analysis instructor told about this and stole if from class note (i am a good student, btw!)</p>
<p>Here's the link to learn about Euclidean Algo <a href="https://en.wikipedia.org/wiki/Euclidean_algorithm">Euclidean Algorithm</a></p>
<pre><code>
function greatestCommonDivisor(a, b){
if(b == 0)
Expand Down
1 change: 1 addition & 0 deletions sort.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ <h2>Insertion sort</h2>
for(i = 1; i&lt;len; i++){
el = arr[i];
j = i;
toInsert = el;

while(j>0 && arr[j-1]>toInsert){
arr[j] = arr[j-1];
Expand Down