Skip to content

Instantly share code, notes, and snippets.

View lazzzis's full-sized avatar
雨の中で踊ろう

lazzzis lazzzis

雨の中で踊ろう
View GitHub Profile
@lazzzis
lazzzis / gitstars.json
Created February 6, 2018 04:15
github stars manager for production
{"tags":[],"lastModified":1517890532029}
class Queue {
constructor () {
this._front = this._back = { val: null, next: null }
this._length = 0
}
push (val) {
this._back.next = {
val,
next: null
@lazzzis
lazzzis / 1025.cpp
Last active October 23, 2017 18:22
UvaOJ -- Practice
#include <iostream>
#include <string>
#include <cstring>
#include <vector>
#include <cstdlib>
#ifdef WINDOWS
#include <direct.h>
#define GetCurrentDir _getcwd
#else
#include <unistd.h>
this is a test