Skip to content

Instantly share code, notes, and snippets.

View tkokof's full-sized avatar

Hugoyu tkokof

View GitHub Profile
@tkokof
tkokof / SortedList.cs
Created July 26, 2018 12:16
simple sorted list implementation using insert sort
// simple sorted list implementation using insert sort
// maintainer hugoyu
using System.Collections.Generic;
namespace Util
{
public class SortedList<T>
{
public SortedList(IComparer<T> comparer = null)
// desc eval arithmetic
// note improve error handling
// maintainer hugoyu
using System;
using System.Diagnostics;
using System.Collections.Generic;
public class EvalArithmetic
{