Skip to content

Instantly share code, notes, and snippets.

View samuelfrench's full-sized avatar

Samuel French samuelfrench

View GitHub Profile
// A very basic web server in node.js
// Stolen from: Node.js for Front-End Developers by Garann Means (p. 9-10)
var port = 8000;
var serverUrl = "127.0.0.1";
var http = require("http");
var path = require("path");
var fs = require("fs");
Authored by Sam French
https://leetcode.com/problems/lemonade-change/discuss/271269/Java-If-anyone-is-confused-why-we-don't-need-recursion-when-we-get-a-20
https://leetcode.com/problems/unique-binary-search-trees/discuss/271283/Jave-beats-100-time-and-memory-recursion-with-cache-has-named-variables-and-comments