Skip to content
View dougyoung's full-sized avatar
Block or Report

Block or report dougyoung

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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. discovery discovery Public

    Self-directed learning and exploration.

    Scala 1

  2. reservations reservations Public

    A simple reservations system with throttling capabilities

    Python

  3. simple-blockchain simple-blockchain Public

    A simple implementation of a proof-of-work blockchain in Python3

    Python

  4. top-chat top-chat Public

    Ruby

  5. Sieve of Eratosthenes in Golang - O(... Sieve of Eratosthenes in Golang - O(n(log(log(n))))
    1
    package main
    2
    
                  
    3
    import "fmt"
    4
    
                  
    5
    func sieve(n uint64) []bool {
  6. Running median of an input stream - ... Running median of an input stream - O(n*log(n))
    1
    import java.util.*;
    2
    
                  
    3
    class Main {
    4
      private static class MedianHeap {
    5
        PriorityQueue<Integer> lowers = new PriorityQueue<>(new Comparator<Integer>() {