This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== | |
/* | |
Draw a diamond |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! IMPORTANT: | |
//! Create a repositary named coding-challenge3, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== | |
// Opposite Number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! IMPORTANT: | |
//! Create a repositary named coding-challenge3, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== | |
// Sum of a Beach |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Title typed as it goes | |
const inputTitle = document.querySelector("#title_input"); | |
const mainTitle = document.querySelector("#main_title"); | |
inputTitle.addEventListener("keyup", updateValue); | |
function updateValue(e) { | |
mainTitle.innerText = e.srcElement.value; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Here go the hard level challenges | |
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Here go the medium level challenges | |
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Here go the easy level challenges | |
//! IMPORTANT: | |
//! Create a repositary named coding-challenge1, then clone it in your | |
//! Documents folder. Create 3 folders inside the newly created folder, | |
//! Name them easy, medium and hard. | |
//! Create ONE .js file PER coding challenge inside the relevant folder, named after the challenge. | |
//! Copy the challlenge prompt and start your code after. | |
//=============================================== |
NewerOlder