├── .gitignore ├── Benchmarks ├── README.md ├── bfs_benchmark.py ├── random_benchmark.py ├── top_k_benchmark.py └── utilities.py ├── Data └── README.md ├── LICENSE ├── README.md └── Submissions └── README /.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | *.pyc 3 | -------------------------------------------------------------------------------- /Benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/Benchmarks/README.md -------------------------------------------------------------------------------- /Benchmarks/bfs_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/Benchmarks/bfs_benchmark.py -------------------------------------------------------------------------------- /Benchmarks/random_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/Benchmarks/random_benchmark.py -------------------------------------------------------------------------------- /Benchmarks/top_k_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/Benchmarks/top_k_benchmark.py -------------------------------------------------------------------------------- /Benchmarks/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/Benchmarks/utilities.py -------------------------------------------------------------------------------- /Data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/Data/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhamner/FacebookRecruitingCompetition/HEAD/README.md -------------------------------------------------------------------------------- /Submissions/README: -------------------------------------------------------------------------------- 1 | Benchmarks write the submissions to this folder. 2 | --------------------------------------------------------------------------------