Skip to content

Instantly share code, notes, and snippets.

View monoman's full-sized avatar
🔗
Interlocking...

Rafael Teixeira monoman

🔗
Interlocking...
View GitHub Profile
@monoman
monoman / UberQueue.cs
Created August 16, 2021 21:34
My Take on David Fowler UberQueue Challenge
// See https://aka.ms/new-console-template for more information
using System.Collections;
using System.Collections.Generic;
Console.WriteLine("Hello, UberQueue!");
var uq = new UberCollections.UberQueue<string>(
new TestAsyncQueue(delay: 500, "One", "Two", "Three"),
new TestAsyncQueue(delay: 1000, "Four", "Five"),
new TestAsyncQueue(delay: 150, "Six", "Seven", "Eight", "Nine")