Skip to content

Instantly share code, notes, and snippets.

View lmbcosta's full-sized avatar

lmbcosta lmbcosta

  • Lisbon, Portugal
View GitHub Profile
@Makistos
Makistos / round-robin.java
Created October 28, 2013 07:56
This is a round-robin algorithm implemented in Java. #round-robin #scheduling #algorithm #java
import java.util.*;
public class Scheduler {
/** The schedule list. */
private Matches matches = new Matches();
public Scheduler(Teams participants) {
createSchedule(participants);
}
@lattner
lattner / TaskConcurrencyManifesto.md
Last active July 15, 2024 01:20
Swift Concurrency Manifesto