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 sys, os | |
from os.path import isdir | |
import glob | |
from shutil import copy | |
import zipfile | |
source_dir = '' | |
destination_dir = '' |
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 <vector> | |
#include <queue> | |
using namespace std; | |
/* | |
* This program reads a simple undireced graph from stdin and preforms | |
* a BFS on the given graph. The format is as follows: | |
* n m |
NewerOlder