Skip to content

Instantly share code, notes, and snippets.

View yuawn's full-sized avatar
🍺
Sleep hard, exploit hard.

YC yuawn

🍺
Sleep hard, exploit hard.
View GitHub Profile
@yuawn
yuawn / a224
Last active August 29, 2015 14:15
#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
int main (){
int i,j;
string s;
while(cin>>s){
int ss,x[200]={0},t=0;
@yuawn
yuawn / Radix Sort.cpp
Last active December 20, 2015 23:08
Radix Sort
#include<cstdio>
#include<cstdlib>
#define MAX 1000000
void RadixSort(int a[],int n)
{
int* b;
int exp = 1;