This file contains 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
REM Install Chocolatey | |
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin | |
REM Install Tools | |
cinst Firefox && | |
cinst firefoxaurora && | |
cinst ulsviewer && | |
cinst GoogleChrome && | |
cinst GoogleChrome.Canary && | |
cinst opera && |
This file contains 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
public int LostTrainees(int a, int b, int c) | |
{ | |
int lives = 3; | |
int doorsOpened = 0; | |
while (true) | |
{ | |
var result = OpenDoor(b); | |
var weapon = GetWeapon(); | |
switch (result) | |
{ |