Skip to content

Instantly share code, notes, and snippets.

View CDillinger's full-sized avatar

Collin Dillinger CDillinger

View GitHub Profile
@CDillinger
CDillinger / CollegeData.cs
Created March 1, 2020 07:16
Largest Public College Undergrad Count by U.S. Political Division
namespace CollegeData
{
public class ApiResponse
{
[JsonProperty("metadata")]
public Metadata Metadata { get; set; }
[JsonProperty("results")]
public SchoolDetails[] Results { get; set; }
}
@CDillinger
CDillinger / FuzzyMatch.cs
Last active July 25, 2023 09:17
C# Implementation of Fuzzy Match
// LICENSE
//
// This software is dual-licensed to the public domain and under the following
// license: you are granted a perpetual, irrevocable license to copy, modify,
// publish, and distribute this file as you see fit.
using System;
using System.Collections.Generic;
public static class FuzzyMatcher