Skip to content

Instantly share code, notes, and snippets.

View kirkhunter's full-sized avatar

Kirk Hunter kirkhunter

View GitHub Profile
@kirkhunter
kirkhunter / BinarySearchTree.java
Last active September 27, 2016 00:06
Some data structures and algorithms in Java
public class BinarySearchTree {
public static Node root;
public BinarySearchTree() {
this.root = null;
}
public boolean find(int id) {
Node current = root;
@kirkhunter
kirkhunter / README.md
Last active May 15, 2016 01:50
Healthcare Covered Charges Among US States

Project 3

@kirkhunter
kirkhunter / README.md
Last active May 15, 2016 01:43
US Healthcare Data Dashboard
@kirkhunter
kirkhunter / README.md
Last active June 23, 2016 22:22
Visualizing NCAA Finals Games
@kirkhunter
kirkhunter / README.md
Created April 14, 2016 21:39
Simple Line Chart with Color Gradient

These are the materials for my workshop at Strata San Jose 2015 as well as resources and next steps. Videos of the workshop can be found here.

We will be using the following two tools to works through these exercises:

I would love your feedback on the materials either on the Q&A forum (Google Group) or in the Github issues.

And please do not hesitate to reach out to me directly via email at jondinu@gmail.com or over twitter @clearspandex

@kirkhunter
kirkhunter / README.md
Last active April 11, 2016 15:18
National Day of Civic Hacking: Learning D3.js (part 1)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kirkhunter
kirkhunter / README.md
Last active March 29, 2016 22:21
MSAN 622 Homework 2: Javascript Anagrams (4/24)

Due 5pm PST Tuesday 3/29

For this homework you will submit as a fork of this gist

Create a Javascript function to find asociated anagrams in an input list of strings. For the input list, output every string (only once) that has an associated anagram elsewhere in the input list. See an example input and output below:

input_list = ['man', 'list', 'acme', 'talk', 'cat', 'beach', 'came', 'tac', 'naan', 'slit', 'act']

var is_anagram = function(word1, word2) {