Create an empty git repo or reinitialize an existing one
$ git init
Create an empty git repo or reinitialize an existing one
$ git init
Just migrated it from Codepen.io to markdown. Credit goes to David Conner.
Working with DOM | Working with JS | Working With Functions |
---|---|---|
Accessing Dom Elements | Add/Remove Array Item | Add Default Arguments to Function |
Grab Children/Parent Node(s) | Add/Remove Object Properties | Throttle/Debounce Functions |
Create DOM Elements | Conditionals |
// Description: | |
// | |
// One of the services provided by an operating system is memory management. | |
// The OS typically provides an API for allocating and releasing memory in a | |
// process's address space. A process should only read and write memory at | |
// addresses which have been allocated by the operating system. In this kata you | |
// will implement a simulation of a simple memory manager. | |
// | |
// JavaScript has no low level memory API, so for our simulation we will simply | |
// use an array as the process address space. The memory manager constructor |
// The businesspeople among you will know that it's often not easy to find an | |
// appointment. In this kata we want to find such an appointment automatically. | |
// You will be given the calendars of our businessperson and a duration for the | |
// meeting. Your task is to find the earliest time, when every businessperson is | |
// free for at least that duration. | |
// | |
// Example Schedule: | |
// | |
// Person | Meetings | |
// -------+----------------------------------------------------------- |