Skip to content

Instantly share code, notes, and snippets.

View seandewar's full-sized avatar
🗿

Sean Dewar seandewar

🗿
View GitHub Profile
@seandewar
seandewar / coders_strike_back_gold.rs
Last active September 27, 2019 15:31
Code for a bot for Coders Strike Back in Gold Tier (codingame.com) written in Rust.
use std::{io, option, vec, cmp};
macro_rules! print_err {
($($arg:tt)*) => (
{
use std::io::Write;
writeln!(&mut ::std::io::stderr(), $($arg)*).ok();
}
)
;;; init.el --- Sean Dewar's GNU Emacs 24.3+ configuration
;;; Commentary:
;; Sean Dewar's (seandewar @ github) init.el configuration.
;;
;; Feel free to use whatever you want from this configuration file.
;; Always a work in progress!
;;; Code: