This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import os | |
def traverse_dir_recur(dir): | |
import os | |
l = os.listdir(dir) | |
for d in l: | |
if os.path.isdir(dir + '/' + d): | |
traverse_dir_recur(dir + '/' + d + "/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <utility> | |
#include <map> | |
#include <queue> | |
#include <set> | |
#include <cstdlib> | |
#include <cstdio> | |
#include <cmath> | |
#include <string> | |
#include <algorithm> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(function() { | |
var q = !!window.ActiveXObject; | |
var p = q && !window.XMLHttpRequest; | |
var r = jQuery("#rpLotteryPop"); | |
var w = jQuery("#rpPage_popMask"); | |
var u = jQuery("#rp_lotteryDial"); | |
var y; | |
var k; | |
var v; | |
var b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set encoding=utf8 | |
syntax on | |
set number | |
set ts=4 | |
set sts=4 | |
set sw=4 | |
set ai | |
set ci | |
set si |