Skip to content

Instantly share code, notes, and snippets.

View rogerwschmidt's full-sized avatar

Roger Schmidt rogerwschmidt

View GitHub Profile
@rogerwschmidt
rogerwschmidt / searching.md
Last active October 25, 2018 18:05 — forked from Shurlow/searching.md
Searching & Sorting Lesson Notes

Searching

Objectives

  • Write pseudocode for linear search
  • Write pseudocode for binary search
  • Translate algorithm pseudocode to working code

Guiding Questions

@rogerwschmidt
rogerwschmidt / accumulator-pattern.md
Created September 17, 2018 14:06 — forked from Shurlow/accumulator-pattern.md
Accumulator Pattern Instructor Notes

Accumulator Pattern Instructor Notes

Objectives

  • Identify the parts of the Accumulator Pattern
  • Use the Accumulator Pattern to solve common problems

What is the Accumulator Pattern

Here is an example of the Accumulator Pattern in action:

@rogerwschmidt
rogerwschmidt / 01 ES6.md
Last active September 22, 2022 11:52 — forked from bwreid/01 ES6.md

ECMAScript 2015 / ES6

Objectives

  • Concatenate strings and variables with template strings
  • Declare variables with only let and const
  • Write anonymous functions with arrow functions
  • Declare defaults to functions parameters

Resource