Skip to content

Instantly share code, notes, and snippets.

View wildapt01's full-sized avatar
🏠
Working from home

Patrick_B wildapt01

🏠
Working from home
  • Greater New York City
View GitHub Profile
@wildapt01
wildapt01 / hard-week4.js
Last active August 24, 2021 06:21
Coding challenge Hard
//! 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
@wildapt01
wildapt01 / easy-week4.js
Last active August 9, 2019 13:52
Coding challenge Easy
//! 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
@wildapt01
wildapt01 / medium-week4.js
Last active August 9, 2019 13:13
Coding challenge Medium
//! 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
@wildapt01
wildapt01 / hard-week3.js
Last active August 2, 2019 12:27
Hard level Battleroom coding challenge
//! 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.
//===============================================
/*
@wildapt01
wildapt01 / medium-week3.js
Last active August 2, 2019 12:26
Medium level Battleroom coding challenge
//! 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.
//===============================================
/*
@wildapt01
wildapt01 / easy-week3.js
Last active August 2, 2019 13:47
Easy level battleroom coding challenge
//! 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.
//===============================================
/*
@wildapt01
wildapt01 / user-input-project.js
Last active August 1, 2019 23:46
Solution as showed in class
//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;
}
@wildapt01
wildapt01 / coding-hard.js
Created July 26, 2019 13:21
Battleroom Hard level
// 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.
//===============================================
@wildapt01
wildapt01 / coding-medium.js
Created July 26, 2019 13:20
Battleroom Medium level
// 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.
//===============================================
@wildapt01
wildapt01 / coding-easy.js
Created July 26, 2019 13:18
Battleroom easy level 07/26
// 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.
//===============================================