Skip to content

Instantly share code, notes, and snippets.

@ahoch10
ahoch10 / Makefile
Created November 9, 2021 19:45 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@ahoch10
ahoch10 / rainwater-collector.md
Last active July 16, 2021 15:43
rainwater-collector-REACTO

Rain Water Collector


Learning Objective

Implement memoization, understand usecase of Kadane's Algorithm

Prompt

You're an industrious programmer that lives off the grid. The local well that you use to fetch water has gone dry, so you've decided to collect rain water to filter; however, your collection device isn't flat.

@ahoch10
ahoch10 / fandango-I.md
Created July 9, 2021 02:05
fandango-I

Background

System Design questions tests the candidate ability to be able to create a system based on a user prompt. A user prompt is either a client telling you what they want or a team making an assumption of what a potential user might want in an idea. What makes this different from an OOP Design question is that this focuses less on the application components themselves and more of the flow of data and how we scale that data based on our understanding of the various trade offs as we modify our system.

Learning Objective

To understand and design API and data schemas.

Design Fandango

User prompt: I want to be able to book movie theater seats online.

@ahoch10
ahoch10 / reverse-linked-list.md
Created June 25, 2021 02:57
reverse linked list

Reverse a Linked List

Learning Objective

  • Implement recursion with linked lists

Interviewer Prompt

@ahoch10
ahoch10 / string-search.md
Created June 16, 2021 02:43
REACTO-string-search

String Search

Learning Objective

  • Apply Big O Analysis with multiple variables

Prompt

You are attempting to find the index of the first appearance of one string (the needle) inside of another (the haystack).