Skip to content

Instantly share code, notes, and snippets.

View stonegray's full-sized avatar

stonegray stonegray

View GitHub Profile
@stonegray
stonegray / tetromino.c
Last active October 17, 2016 07:19
Obfuscated C Practice: Tetromino Pieces
// tetromino.c
// Reddit Programming Challenge
// https://www.reddit.com/r/dailyprogrammer/comments/3ofsyb/20151012_challenge_236_easy_random_bag_system/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
// Magic numbers
unsigned long long m = 0x4F49535A4C4A54;