Skip to content

Instantly share code, notes, and snippets.

View walshman23's full-sized avatar

Chris walshman23

View GitHub Profile
@walshman23
walshman23 / spicersort.c
Last active March 2, 2017 19:35
Spicer Sort
/* Error checking not needed. */
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int ch;
while ((ch=getchar()) != EOF) {