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
// Prisoners Puzzle YT Video by Veritasium //////////////////////////////////// | |
#include <iostream> | |
#include <cstdlib> | |
#include <ctime> | |
#include <algorithm> | |
#define EXPERIMENTS 100000 | |
#define PRISONERS 1000 |