Skip to content

Instantly share code, notes, and snippets.

@eulerscheZahl
eulerscheZahl / Solver.cs
Created May 15, 2019 14:02
Codeforces Marathon veeroute 2019
// #undef DEBUG
using System;
using System.Linq;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Diagnostics;
namespace Solver
@eulerscheZahl
eulerscheZahl / Amadeus.cs
Last active July 23, 2018 16:31
CodinGame Amadeus contest
//#undef DEBUG
using System;
using System.Linq;
using System.IO;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
@eulerscheZahl
eulerscheZahl / stats.py
Created January 15, 2018 19:14
riddles.io winning statistics
#!/usr/bin/python3
"""
usage: stats.py username [revision=latest]
output: [wins, losses, draws]
"""
import sys
import json
import requests