Skip to content

Instantly share code, notes, and snippets.

View buddylindsey's full-sized avatar
🚜
Homesteading

Buddy Lindsey, Jr. buddylindsey

🚜
Homesteading
View GitHub Profile
from random import shuffle
print "============================================================================="
print "|| ||"
print "|| Welcome To Expert Travel System ||"
print "|| ||"
print "============================================================================="
a = list(["Damai Beach", "Lundu Beach", "Desaru Beach", "Sapi Island"])
b = list(["","","","","","","","","",""])
@buddylindsey
buddylindsey / gist:1410890
Created November 30, 2011 21:19 — forked from zerokarmaleft/gist:1410689
Max-Heap
#include <iostream>
#include <stdlib.h>
#include <limits.h>
#include <fstream>
#include <string>
#include <sstream>
using namespace std;
ofstream outfile;