Skip to content
View MaxWellHays's full-sized avatar

Highlights

  • Pro

Block or report MaxWellHays

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. finos/plexus-interop finos/plexus-interop Public archive

    Plexus Interop open source project hosted by the Fintech Open Source Foundation

    C# 253 52

  2. SpbBuildingAgeMaps SpbBuildingAgeMaps Public

    The application is collecting information about age of buildings in Saint-Petersburg and convert that information using api of OpenStreetMap to showing it using carto.com

    C#

  3. anki-one-click anki-one-click Public

    Chrome extension to add new words to anki in one click

    TypeScript 2

  4. C# Heap implementation C# Heap implementation
    1
    using System;
    2
    using System.Collections.Generic;
    3
    
                  
    4
    public class Heap<T>
    5
    {
  5. C# DisjointSet implementation (Union... C# DisjointSet implementation (UnionFind)
    1
    using System.Collections.Generic;
    2
    
                  
    3
    public class DisjointSet<T>
    4
    {
    5
        Dictionary<T, T> parents = new Dictionary<T, T>();
  6. C# Dequeue implementation C# Dequeue implementation
    1
    using System;
    2
    
                  
    3
    public class Dequeue<T>
    4
    {
    5
        public Dequeue(int capacity)