├── .gitignore ├── .python-version ├── CONTRIBUTING.md ├── LICENSE.md ├── NOTICE ├── README.md ├── Unittesting.md ├── _bin ├── cpr └── test ├── challenge_0 ├── README.md ├── bash │ ├── deku-jacktraf │ │ ├── Readme.md │ │ └── hello-world.sh │ └── ning │ │ ├── README.md │ │ └── challenge_0.sh ├── c │ ├── almyk │ │ └── src │ │ │ └── helloworld.c │ ├── boilerup_brian │ │ ├── README.md │ │ └── helloWorld.c │ ├── jarydremillard │ │ └── hello_world.c │ ├── kmaitski │ │ └── hello_world.c │ ├── nasciiboy │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ ├── scottsquatch │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ ├── sysek │ │ ├── README.md │ │ └── main.c │ ├── tyleroar │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.c │ ├── xor-eax-eax │ │ ├── README.md │ │ └── src │ │ │ └── challenge0.c │ └── zooks97 │ │ ├── README.md │ │ └── src │ │ └── helloWorld.c ├── coffeescript │ └── kedarbramhe │ │ ├── coffeescripts │ │ ├── hello_world.coffee │ │ └── readme.md │ │ └── javascripts │ │ └── hello_world.js ├── cpp │ ├── alexbotello │ │ └── main.cpp │ ├── battlefrog │ │ ├── main.cpp │ │ └── readme.md │ ├── blakebarnes00 │ │ ├── Makefile │ │ └── main.cpp │ ├── chowey │ │ ├── main.cpp │ │ └── readme.md │ ├── dewie102 │ │ ├── README.md │ │ └── src │ │ │ └── HelloWorld.cpp │ ├── flavabox │ │ └── main.cpp │ ├── manuel │ │ ├── README.md │ │ └── src │ │ │ └── solution.cpp │ ├── rbrt │ │ ├── README.md │ │ └── src │ │ │ └── [C++] Challenge0.cpp │ ├── spudmonkey │ │ └── main.cpp │ └── sven │ │ ├── README.md │ │ └── src │ │ └── HelloWorld.cpp ├── csharp │ ├── badoomtch │ │ └── helloworld.cs │ ├── bdoner │ │ ├── README.md │ │ └── hello.cs │ ├── fojo │ │ └── helloworld.cs │ ├── jfrancis2 │ │ ├── README.md │ │ └── src │ │ │ └── hello.cs │ ├── ross │ └── sven │ │ ├── README.md │ │ └── src │ │ └── HelloWorld.cs ├── elixir │ ├── csuzw │ │ ├── README.md │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── lib │ │ │ └── hello.ex │ │ │ ├── mix.exs │ │ │ ├── mix.lock │ │ │ └── test │ │ │ ├── hello_test.exs │ │ │ └── test_helper.exs │ └── joegotflow83 │ │ └── main.ex ├── fsharp │ └── mssabr01 │ │ ├── README.md │ │ └── src │ │ └── HelloWorld.fs ├── go │ ├── erocs │ │ └── hello_world.go │ ├── makernaren │ │ ├── README.md │ │ └── helloworld.go │ ├── natdm │ │ └── app.go │ ├── shivams │ │ ├── README.md │ │ └── hello.go │ └── tml │ │ ├── README.md │ │ └── src │ │ └── helloworld.go ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ └── Main.hs ├── java │ ├── JakeBash │ │ └── Challenge_0.java │ ├── Leigh │ │ └── HelloWorld.java │ ├── gwong │ │ └── challenge_0.java │ └── jdfurlan │ │ ├── README.md │ │ └── src │ │ └── HelloWorld.java ├── javascript │ ├── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ │ ├── hello-world.js │ │ │ └── index.html │ ├── collinperkins │ │ ├── helloWorld.js │ │ ├── index.html │ │ └── readme.md │ ├── raijinn │ │ ├── README.md │ │ └── src │ │ │ └── challenge_0.js │ ├── rawphs │ │ ├── README.md │ │ └── src │ │ │ └── index.js │ ├── saif │ │ ├── README.md │ │ └── index.html │ └── ukirderohit │ │ ├── README.md │ │ ├── hello.js │ │ └── index.html ├── julia │ └── DTCitron │ │ ├── README.md │ │ └── src │ │ └── helloworld.jl ├── php │ └── selectivealso │ │ ├── hello_world.php │ │ └── readme.md ├── postscript │ └── moonpatroller │ │ └── hello_world.txt ├── python │ ├── Atakyn │ │ └── c0.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ └── helloworld.py │ ├── DTCitron │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── DTaylor1986 │ │ ├── README.md │ │ └── src.py │ ├── Fejolu │ │ ├── readme.md │ │ └── src │ │ │ └── helloworld.py │ ├── Jac08H │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── OkraArmband │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.py │ ├── Tursup │ │ ├── Challenge #0.py │ │ └── README.MD │ ├── Zanetti │ │ └── challenge_0.py │ ├── Zjael │ │ ├── README.md │ │ └── src │ │ │ └── Python_0.py │ ├── abhiramm7 │ │ └── challenge_0.py │ ├── acronymcreations │ │ └── src │ │ │ └── hello.py │ ├── ajschrier │ │ ├── README.md │ │ └── challenge-0.py │ ├── alexmunoz905 │ │ ├── main.py │ │ └── readme.md │ ├── bryantpq │ │ ├── README.md │ │ └── hello.py │ ├── carter010 │ │ └── hello_world.py │ ├── dashsten │ │ └── hello.py │ ├── dfdx2 │ │ └── hello.py │ ├── dlutsch │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.py │ ├── dsyost │ │ ├── README.md │ │ └── src │ │ │ └── helloworld.py │ ├── flickdm │ │ ├── Readme.md │ │ └── hello_world.py │ ├── gshooty │ │ └── hello_world.py │ ├── idlepythos │ │ └── helloWorld.py │ ├── jcpattison │ │ ├── README.md │ │ └── src │ │ │ └── HelloWord.py │ ├── kar-moore │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.py │ ├── kokimame │ │ ├── README.md │ │ └── helloworld.py │ ├── lepmets │ │ ├── README.md │ │ └── src │ │ │ └── challenge_0.py │ ├── lex32pem │ │ ├── challenge_0.py │ │ └── readme.md │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ └── hello.py │ ├── mindovermiles262 │ │ ├── README.md │ │ └── src │ │ │ └── challenge_00.py │ ├── mjuiuc │ │ ├── README.md │ │ └── helloworld.py │ ├── nebi │ │ ├── README.md │ │ └── src │ │ │ └── hello.py │ ├── ning │ │ └── challenge_0.py │ ├── noirchrome │ │ └── helloworld.py │ ├── paper-squares │ │ └── helloworld.py │ ├── phil-harmoniq │ │ └── challenge_0.py │ ├── polar │ │ ├── README.md │ │ └── src │ │ │ └── helloWorld.py │ ├── popcorn_anachronism │ │ ├── challenge_0.py │ │ └── readme.md │ ├── psonghi │ │ ├── README.md │ │ └── src │ │ │ └── helloworld.py │ ├── returnlove │ │ ├── README.md │ │ └── src │ │ │ └── helloworld.py │ ├── sarcodian │ │ └── src │ │ │ └── challenge_0.py │ ├── shaowen │ │ └── helloworld.py │ ├── slandau │ │ ├── README.md │ │ └── hello_world.py │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ └── challenge_0.py │ ├── slickness │ │ ├── Challenge_0.py │ │ └── README.MD │ ├── sten │ ├── sysek │ │ ├── README.md │ │ └── src │ │ │ └── hello.py │ ├── system123 │ │ ├── README.md │ │ └── challenge0.py │ ├── tavery321 │ │ ├── README.md │ │ └── src │ │ │ └── c0.py │ ├── thereluctantloser │ │ ├── README.txt │ │ └── src │ │ │ └── challenge0.py │ ├── tvanderwal │ │ ├── README.md │ │ └── src │ │ │ └── challenge_0.py │ ├── ukirderohit │ │ └── helloworld.py │ ├── walkingluo │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.py │ ├── whiterd │ │ ├── README.md │ │ └── src │ │ │ └── hello_world.py │ ├── wobboz │ │ ├── README.md │ │ └── src │ │ │ └── HelloWorld.py │ ├── wost │ │ ├── README.md │ │ └── main.py │ ├── zanetti │ │ └── challenge_0_pygame.py │ └── zooks97 │ │ ├── README.md │ │ └── src │ │ └── helloWorld.py ├── r │ └── aev1tas │ │ └── HelloWorld.R ├── ruby │ └── ConorWright │ │ ├── README.md │ │ └── hello_world.rb ├── rust │ ├── deg4uss3r │ │ └── challenge_0 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── challenge_0 │ │ │ └── src │ │ │ └── main.rs │ ├── josephpd3 │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── main.rs │ ├── makernaren │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── main.rs │ └── myrrlyn │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── main.rs ├── scala │ └── ndsmith3 │ │ └── HelloWorld.scala ├── swift │ ├── garytate │ │ └── challenge_0.swift │ └── stevenr12 │ │ └── HelloWorld.swift └── x86 │ └── x95 │ ├── README.md │ └── src │ └── helloworld.s ├── challenge_1 ├── Julia │ └── DTCitron │ │ ├── README.md │ │ └── src │ │ └── reverse.jl ├── README.md ├── bash │ └── deku-jacktraf │ │ ├── Readme.md │ │ └── reverse-string.sh ├── c │ ├── almyk │ │ └── src │ │ │ └── challenge1.c │ ├── boilerup_brian │ │ ├── README.md │ │ └── src │ │ │ ├── stringreverse │ │ │ └── stringreverse.c │ ├── jrtn │ │ └── reverse_string.c │ ├── kmaitski │ │ └── reverse_string.c │ ├── nasciiboy │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ ├── scottsquatch │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ ├── tyleroar │ │ ├── README.md │ │ └── src │ │ │ └── strings.c │ ├── woser │ │ ├── README.md │ │ └── src │ │ │ └── string_reverse.c │ ├── xor-eax-eax │ │ ├── README.md │ │ └── src │ │ │ └── challenge1.c │ └── zooks97 │ │ ├── README.md │ │ └── src │ │ └── reverseInput.c ├── coffeescript │ └── kedarbramhe │ │ └── coffeescripts │ │ ├── readme.md │ │ └── reverse.coffee ├── cpp │ ├── alexbotello │ │ ├── README.md │ │ └── src │ │ │ └── main.cpp │ ├── blakebarnes00 │ │ ├── Makefile │ │ └── main.cpp │ ├── chowey │ │ ├── main.cpp │ │ └── readme.md │ ├── dewie102 │ │ ├── README.md │ │ └── src │ │ │ └── ReverseString.cpp │ ├── flickdm │ │ ├── Readme.md │ │ └── src │ │ │ └── main.cpp │ ├── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.cpp │ ├── rbrt │ │ ├── README.md │ │ └── src │ │ │ └── [C++]Challenge1.cpp │ └── sven │ │ ├── README.md │ │ └── src │ │ └── Reverse.cpp ├── csharp │ ├── badoomtch │ │ └── reversestring.cs │ ├── bdoner │ │ ├── README.md │ │ └── esrever.cs │ ├── fojo │ │ └── Program.cs │ ├── jfrancis2 │ │ ├── README.md │ │ └── src │ │ │ └── program.cs │ ├── ross │ └── sven │ │ ├── README.md │ │ └── src │ │ └── Reverse.cs ├── elixir │ ├── csuzw │ │ ├── README.md │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── lib │ │ │ └── reverse.ex │ │ │ ├── mix.exs │ │ │ ├── mix.lock │ │ │ └── test │ │ │ ├── reverse_test.exs │ │ │ └── test_helper.exs │ └── joegotflow83 │ │ └── reverse │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ └── config.exs │ │ ├── lib │ │ └── reverse.ex │ │ ├── mix.exs │ │ └── test │ │ ├── reverse_test.exs │ │ └── test_helper.exs ├── go │ ├── erocs │ │ └── reverse.go │ ├── igniteflow │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.go │ ├── makernaren │ │ ├── README.md │ │ ├── string_reversal.go │ │ └── string_reversal_test.go │ ├── natdm │ │ ├── reverse.go │ │ └── reverse_test.go │ ├── rchicoli │ │ ├── reverse.go │ │ └── reverse_test.go │ ├── shivams │ │ ├── README.md │ │ └── reverse.go │ └── tml │ │ ├── README.md │ │ └── src │ │ └── strrev.go ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ └── Main.hs ├── java │ ├── JakeBash │ │ └── Challenge_1.java │ ├── Leigh │ │ └── ReverseString.java │ ├── eddy_north │ │ └── ReverseString.java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ └── ReverseAString.java │ ├── togden │ │ ├── README.md │ │ └── src │ │ │ └── Reversal.java │ └── zmiller91 │ │ └── ReverseString.java ├── javascript │ ├── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ │ ├── index.html │ │ │ └── stringReverse.js │ ├── collinperkins │ │ ├── index.html │ │ ├── readme.md │ │ └── reverse.js │ ├── raijinn │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.js │ └── rawphs │ │ ├── README.md │ │ └── src │ │ └── index.js ├── php │ ├── jarydremillard │ │ └── challenge_1.php │ └── selectivealso │ │ ├── readme.md │ │ ├── string_reversal.php │ │ └── string_reversal_short.php ├── postscript │ └── moonpatroller │ │ └── reverse_string.txt ├── python │ ├── Atakyn │ │ └── c1.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ ├── reverse_string.py │ │ │ └── reverse_string_test.py │ ├── DTCitron │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── DakRomo │ │ └── Challenge_1 │ ├── Jac08H │ │ ├── README.md │ │ └── src │ │ │ └── solution.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── MicalV │ │ └── main.py │ ├── OkraArmband │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── abhiramm7 │ │ └── challenge_1.py │ ├── acronymcreations │ │ └── src │ │ │ └── challenge1.py │ ├── ajschrier │ │ ├── README.md │ │ └── challenge_1.py │ ├── alexbotello │ │ ├── README.md │ │ └── main.py │ ├── alexmunoz905 │ │ ├── main.py │ │ └── readme.md │ ├── boilerup_brian │ │ ├── README.md │ │ └── src │ │ │ └── stringreverse.py │ ├── bryantpq │ │ ├── README.md │ │ └── reverse.py │ ├── carter010 │ │ └── reverse.py │ ├── dashsten │ │ └── challenge_1.py │ ├── dfdx2 │ │ └── reverse.py │ ├── dlutsch │ │ └── reverse_string.py │ ├── dsyost │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── gshooty │ │ └── reverse.py │ ├── gwong │ │ └── challenge_1.py │ ├── hkl0902 │ │ └── challenge_1.py │ ├── igniteflow │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.py │ ├── jarydremillard │ │ └── reverse.py │ ├── jcpattison │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── kar-moore │ │ ├── README.md │ │ └── src │ │ │ └── challenge1.py │ ├── kokimame │ │ ├── README.md │ │ └── reverse_string.py │ ├── lepmets │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.py │ ├── lex32pem │ │ ├── challenge_1.py │ │ └── readme.md │ ├── manuel │ │ └── solution.py │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── mjuiuc │ │ └── ReverseString.py │ ├── nebi │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── ning │ │ └── challenge_1.py │ ├── papersquares │ │ └── stringreversechallenge1.py │ ├── phil-harmoniq │ │ └── challenge_1.py │ ├── polar │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── popcorn_anachronism │ │ ├── challenge_1.py │ │ └── readme.md │ ├── psonghi │ │ ├── README.md │ │ └── src │ │ │ └── reverse_string.py │ ├── py2k5 │ │ └── reverseString.py │ ├── returnlove │ │ ├── README.md │ │ └── src │ │ │ └── reverse_a_string.py │ ├── sarcodian │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.py │ ├── shaowen │ │ └── reverse.py │ ├── slandau │ │ ├── README.md │ │ └── reverse.py │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.py │ ├── slickness │ │ ├── README.MD │ │ └── challenge_1.py │ ├── sysek │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── system123 │ │ ├── README.md │ │ └── challenge1.py │ ├── tavery321 │ │ ├── README.md │ │ └── src │ │ │ └── c1.py │ ├── tursup │ │ ├── READMEE.MD │ │ └── challenge1.py │ ├── tvanderwal │ │ ├── README.md │ │ └── src │ │ │ └── challenge_1.py │ ├── ukirderohit │ │ └── reverse.py │ ├── walkingluo │ │ ├── README.md │ │ └── src │ │ │ └── reverse_string.py │ ├── whiterd │ │ ├── README.md │ │ └── src │ │ │ └── reverse_me.py │ ├── wobboz │ │ ├── README.md │ │ └── src │ │ │ └── reverse.py │ ├── wost │ │ └── main.py │ ├── zanetti │ │ └── challenge_0.py │ └── zooks97 │ │ ├── README.md │ │ ├── reverseInput.py │ │ └── src │ │ └── reverseInput.py ├── r │ ├── aev1tas │ │ └── ReverseString.R │ └── henriquefb │ │ ├── README.md │ │ └── challenge_1.R ├── ruby │ └── ConorWright │ │ ├── README.md │ │ └── string_reverse.rb ├── rust │ ├── .gitignore │ ├── deg4uss3r │ │ └── challenge_1 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── src │ │ │ └── lib.rs │ │ │ └── tests │ │ │ └── main.rs │ ├── josephpd3 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ └── josephpd3.rs │ ├── makernaren │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ ├── main.rs │ │ │ └── string_reverser.rs │ └── myrrlyn │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ └── main.rs ├── scala │ └── ndsmith3 │ │ ├── README.md │ │ └── StringReverse.scala ├── swift │ ├── garytate │ │ └── challenge_1.swift │ └── stevenr12 │ │ ├── README.md │ │ └── reverse.swift ├── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── o5 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ └── t5 └── x86 │ └── x95 │ ├── README.md │ └── src │ └── reversestring.s ├── challenge_10 ├── README.md ├── java │ └── zmiller91 │ │ ├── README.md │ │ ├── ValidClosers.java │ │ └── YOP.java ├── python │ ├── alexbotello │ │ ├── README.md │ │ └── src │ │ │ ├── closers.py │ │ │ └── tests.py │ ├── loran425 │ │ ├── README.md │ │ └── src │ │ │ ├── matching_brackets.py │ │ │ └── tests.py │ ├── ning │ │ ├── README.md │ │ ├── challenge_10.py │ │ └── test.py │ ├── sarcodian │ │ ├── READ.me │ │ └── src │ │ │ ├── challenge_10.py │ │ │ └── challenge_10_tests.py │ ├── shaowen │ │ ├── READE.md │ │ ├── solution.py │ │ └── unit_test.py │ ├── slandau3 │ │ ├── closers.py │ │ └── tests.py │ └── system123 │ │ ├── challenge_10.py │ │ └── tests.py ├── rust │ └── deg4uss3r │ │ ├── README.md │ │ └── challenge_10 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ └── main.rs │ │ └── tests │ │ └── test.bsh ├── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── o5 │ ├── o6 │ ├── o7 │ ├── o8 │ ├── o9 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ ├── t5 │ ├── t6 │ ├── t7 │ ├── t8 │ └── t9 └── x86 │ └── x95 │ ├── README.md │ └── src │ ├── brackets.s │ └── challenge10.c ├── challenge_11 ├── README.md ├── cpp │ └── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ ├── BST.cpp │ │ ├── include │ │ └── BST.h │ │ └── main.cpp ├── python │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ ├── btree.py │ │ │ └── remove_from_tree.py │ ├── slandau3 │ │ └── bst.py │ └── system123 │ │ └── challenge_11.py └── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── t1 │ ├── t2 │ ├── t3 │ └── t4 ├── challenge_12 ├── README.md ├── python │ ├── sarcodian │ │ ├── READ.me │ │ └── src │ │ │ ├── challenge_12.py │ │ │ └── challenge_12_tests.py │ ├── slandau3 │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── compression.py │ │ └── tests.py │ └── system123 │ │ └── challenge_12.py └── rust │ └── deg4uss3r │ └── challenge_12 │ ├── Cargo.toml │ └── src │ └── lib.rs ├── challenge_13 ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── challenge_13.c ├── java │ └── slandau3 │ │ └── src │ │ └── IntegerPalindrome.java ├── python │ ├── alexbotello │ │ ├── README.md │ │ └── src │ │ │ ├── palin.py │ │ │ └── tests.py │ ├── ning │ │ ├── README.md │ │ ├── challenge_13.py │ │ └── test.py │ ├── sarcodian │ │ ├── READ.me │ │ └── src │ │ │ ├── challenge_13.py │ │ │ └── challenge_13_tests.py │ └── system123 │ │ ├── challenge_13.py │ │ └── tests.py ├── rust │ └── deg4uss3r │ │ └── challenge_13 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ └── main.rs │ │ └── tests │ │ └── test_suite.bsh └── tests │ ├── test1 │ ├── test2 │ ├── test3 │ ├── test4 │ └── test5 ├── challenge_14 ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── challenge_14.c ├── java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ └── ReversingALinkedList.java │ └── slandau3 │ │ └── src │ │ └── Reverse.java ├── python │ └── system123 │ │ └── challenge_14.py └── tests │ ├── test1 │ ├── test2 │ ├── test3 │ └── test4 ├── challenge_15 ├── README.md └── java │ └── slandau3 │ └── src │ └── TakingCandyFromABaby.java ├── challenge_16 ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── challenge_16.c ├── cpp │ └── karanchawla │ │ ├── README.md │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── challenge_16.cpp │ │ ├── challenge_16.h │ │ └── main.cpp └── python │ ├── slandau3 │ └── perm.py │ └── system123 │ └── challenge_16.py ├── challenge_17 ├── README.md └── python │ ├── slandau3 │ └── change.py │ └── system123 │ └── challenge_17.py ├── challenge_18 ├── C │ └── yourpalnurav │ │ ├── README.md │ │ └── YPN_Paths.c ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── challenge_18.c └── python │ ├── slandau3 │ └── paths.py │ └── system123 │ └── challenge_18.py ├── challenge_2 ├── Java │ ├── JakeBash │ │ └── Challenge_2.java │ └── Leigh │ │ ├── Histogram.java │ │ ├── SingleNumber.java │ │ └── SingleNumber2.java ├── Julia │ └── DTCitron │ │ ├── README.md │ │ └── src │ │ └── unrepeat.jl ├── README.md ├── c │ ├── almyk │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ ├── nasciiboy │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ ├── scottsquatch │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ └── main.c │ └── xor-eax-eax │ │ ├── README.md │ │ └── src │ │ └── challenge2.c ├── cpp │ ├── blakebarnes00 │ │ ├── Makefile │ │ └── src │ │ │ └── main.cpp │ ├── dewie102 │ │ ├── README.md │ │ └── src │ │ │ └── SingleNumber.cpp │ ├── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ ├── include │ │ │ └── singleNumber.h │ │ │ ├── main.cpp │ │ │ └── singleNumber.cpp │ └── sven │ │ ├── README.md │ │ └── src │ │ └── Single.cpp ├── csharp │ ├── bdoner │ │ ├── README.md │ │ └── single.cs │ ├── fojo │ │ └── Challenge2.cs │ └── sven │ │ ├── README.md │ │ └── src │ │ └── Single.cs ├── elixir │ └── joegotflow83 │ │ └── single_number │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ └── config.exs │ │ ├── lib │ │ └── single_number.ex │ │ ├── mix.exs │ │ └── test │ │ ├── single_number_test.exs │ │ └── test_helper.exs ├── go │ ├── erocs │ │ └── find_singleton.go │ ├── makernaren │ │ ├── README.md │ │ ├── single_number.go │ │ └── single_number_test.go │ ├── natdm │ │ ├── single.go │ │ └── single_test.go │ └── rchicoli │ │ ├── README.md │ │ └── src │ │ ├── single_number.go │ │ └── single_number_test.go ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ ├── Challenge.hs │ │ ├── Main.hs │ │ └── Spec.hs ├── java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ └── SingleNumber.java │ ├── jrtn │ │ └── SingleNumber.java │ └── zmiller91 │ │ └── SingleNumber.java ├── javascript │ ├── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ │ ├── index.html │ │ │ └── singleNumber.js │ ├── phathousecat │ │ ├── README.md │ │ ├── index.html │ │ └── uniqueValue.js │ └── rawphs │ │ ├── README.md │ │ └── index.js ├── postscript │ └── moonpatroller │ │ ├── README.md │ │ └── unique_number.txt ├── python │ ├── Atakyn │ │ └── c2.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ └── singleNumber.py │ ├── DTCitron │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── OkraArmband │ │ ├── README.md │ │ └── src │ │ │ └── unique_ele.py │ ├── ajschrier │ │ ├── README.md │ │ └── challenge_2.py │ ├── alexbotello │ │ ├── README.md │ │ └── main.py │ ├── bryantpq │ │ ├── README.md │ │ └── search_item.py │ ├── cactus │ │ ├── README.md │ │ └── src │ │ │ └── challenge_2.py │ ├── dfdx2 │ │ └── count.py │ ├── flickdm │ │ ├── Readme.md │ │ ├── challenge2.py │ │ └── test.py │ ├── hkl0902 │ │ └── challenge_2.py │ ├── kar-moore │ │ ├── README.md │ │ └── src │ │ │ └── challenge2.py │ ├── lepmets │ │ ├── README.md │ │ └── src │ │ │ └── challenge_2.py │ ├── lex32pem │ │ ├── Readme.md │ │ └── challenge_2.py │ ├── mical │ │ └── main.py │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ └── single.py │ ├── mjuiuc │ │ └── SingleNumber.py │ ├── mrkwll │ │ └── solution.py │ ├── nebi │ │ ├── README.md │ │ └── src │ │ │ └── single_number.py │ ├── ning │ │ └── challenge_2.py │ ├── phil-harmoniq │ │ ├── README.md │ │ └── challenge_2.py │ ├── polar │ │ ├── README.md │ │ └── src │ │ │ └── SingleDigit.py │ ├── popcorn_anachronism │ │ ├── challenge_2.py │ │ └── readme.md │ ├── psonghi │ │ ├── README.md │ │ └── src │ │ │ └── single_number.py │ ├── py2k5 │ │ └── findNonRepeatNumber.py │ ├── returnlove │ │ ├── README.md │ │ └── src │ │ │ └── single_number.py │ ├── sarcodian │ │ ├── README.md │ │ └── src │ │ │ └── challenge_2.py │ ├── shaowen │ │ └── single_n.py │ ├── slandau │ │ ├── README.md │ │ └── single.py │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ └── challenge_2.py │ ├── sysek │ │ ├── README.md │ │ └── src │ │ │ └── singlenumber.py │ ├── system123 │ │ ├── README.md │ │ └── challenge2.py │ ├── tvanderwal │ │ ├── README.md │ │ └── src │ │ │ └── challenge_2.py │ ├── ukirderohit │ │ ├── README.md │ │ └── c2.py │ ├── walkingluo │ │ ├── README.md │ │ └── src │ │ │ └── single_number.py │ ├── whiterd │ │ ├── README.md │ │ └── src │ │ │ └── find_distinct.py │ └── zooks97 │ │ ├── README.md │ │ └── src │ │ └── singleFinder.py ├── r │ ├── aev1tas │ │ └── uniquevalue.R │ └── henriquefb │ │ ├── README.md │ │ └── challenge2hfb.R ├── ruby │ ├── ConorWright │ │ └── unique_int.rb │ └── selectivealso │ │ ├── methods.rb │ │ ├── readme.md │ │ └── single_number.rb ├── rust │ ├── deg4uss3r │ │ └── challenge_2 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── src │ │ │ └── lib.rs │ │ │ └── tests │ │ │ └── main.rs │ ├── josephpd3 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ │ └── lib.rs │ │ └── tests │ │ │ └── single_count.rs │ ├── makernaren │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ ├── main.rs │ │ │ └── single_number.rs │ └── myrrlyn │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── scala │ └── ndsmith3 │ │ ├── README.md │ │ └── SingleNumber.scala └── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── o5 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ └── t5 ├── challenge_3 ├── C │ ├── karanchawla │ │ └── src │ │ │ ├── README.md │ │ │ └── majElement.c │ └── xor-eax-eax │ │ ├── README.md │ │ └── src │ │ └── main.c ├── README.md ├── cpp │ ├── blakebarnes00 │ │ ├── Makefile │ │ └── src │ │ │ └── main.cpp │ ├── dewie102 │ │ ├── README.md │ │ └── src │ │ │ └── MajorityElement.cpp │ ├── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ ├── include │ │ │ └── majorityElement.h │ │ │ ├── main.cpp │ │ │ └── majorityElement.cpp │ └── rbrt │ │ ├── README.md │ │ └── src │ │ └── [cpp]Challenge_3.cpp ├── elixir │ └── joegotflow83 │ │ └── majority_element │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ └── config.exs │ │ ├── lib │ │ └── majority_element.ex │ │ ├── mix.exs │ │ └── test │ │ ├── majority_element_test.exs │ │ └── test_helper.exs ├── go │ ├── erocs │ │ └── majority.go │ ├── makernaren │ │ ├── README.md │ │ ├── max_occurance.go │ │ └── max_occurance_test.go │ ├── natdm │ │ ├── majority.go │ │ └── majority_test.go │ └── rchicoli │ │ ├── README.md │ │ └── src │ │ ├── majority_element.go │ │ └── majority_element_test.go ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ ├── Challenge.hs │ │ ├── Main.hs │ │ └── Spec.hs ├── java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ └── MajorityElement.java │ └── zmiller91 │ │ └── MajorityElement.java ├── javascript │ ├── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ │ ├── index.html │ │ │ └── majority-element.js │ └── rawphs │ │ ├── README.md │ │ └── src │ │ └── index.js ├── julia │ └── DTCitron │ │ ├── README.md │ │ └── src │ │ └── majority.jl ├── postscript │ └── moonpatroller │ │ ├── README.md │ │ └── majority_element.txt ├── python │ ├── Atakyn │ │ └── c3.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ └── majorityElement.py │ ├── DTCitron │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── Mical │ │ └── findMajorityElement.py │ ├── OkraArmband │ │ ├── README.md │ │ └── src │ │ │ └── maj_ele.py │ ├── ajschrier │ │ ├── README.md │ │ └── challenge_3.py │ ├── alexbotello │ │ ├── README.md │ │ └── main.py │ ├── bryantpq │ │ ├── README.md │ │ └── find_majority.py │ ├── dfdx2 │ │ └── challenge_3.py │ ├── hkl0902 │ │ └── Challenge_3.py │ ├── kar-moore │ │ ├── README.md │ │ └── src │ │ │ └── challenge3.py │ ├── lepmets │ │ ├── README.md │ │ └── src │ │ │ └── challenge_3.py │ ├── lex32pem │ │ ├── challenge_3.py │ │ └── readme.md │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ └── majority.py │ ├── mjuiuc │ │ └── MajorityElement-Easy.py │ ├── ning │ │ └── challenge_3.py │ ├── phil-harmoniq │ │ └── challenge_3.py │ ├── popcorn_anachronism │ │ ├── readme.md │ │ └── src │ │ │ └── challenge_3.py │ ├── returnlove │ │ ├── README.md │ │ └── src │ │ │ └── majority_element.py │ ├── sarcodian │ │ ├── README.md │ │ └── src │ │ │ └── challenge_3.py │ ├── shaowen │ │ └── majority_element.py │ ├── slandau │ │ ├── README.md │ │ └── majority.py │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ └── challenge_3.py │ ├── sysek │ │ ├── README.md │ │ └── src │ │ │ └── majority.py │ ├── system123 │ │ ├── README.md │ │ └── challenge3.py │ ├── tvanderwal │ │ ├── README.md │ │ └── src │ │ │ └── challenge_3.py │ ├── whiterd │ │ ├── README.md │ │ └── src │ │ │ └── find_major.py │ └── wost │ │ ├── README.md │ │ └── main.py ├── r │ ├── aev1tas │ │ └── MajorityElement.R │ └── henriquefb │ │ ├── README.md │ │ └── challenge3hfb.R ├── ruby │ └── selectivealso │ │ ├── majority.rb │ │ └── readme.md ├── rust │ ├── deg4uss3r │ │ └── challenge_3 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── README.md │ │ │ ├── src │ │ │ └── lib.rs │ │ │ └── tests │ │ │ └── main.rs │ └── myrrlyn │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ ├── lib.rs │ │ └── main.rs ├── scala │ └── ndsmith3 │ │ ├── MajorityElement.scala │ │ └── README.md └── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── o5 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ └── t5 ├── challenge_4 ├── README.md ├── c │ ├── karanchawla │ │ ├── README.md │ │ └── challenge_4.c │ └── kokimame │ │ ├── README.md │ │ └── invertTree.c ├── cpp │ ├── dewie102 │ │ ├── README.md │ │ └── src │ │ │ ├── BinaryTree.cpp │ │ │ ├── InvertBT.cpp │ │ │ └── include │ │ │ └── BinaryTree.h │ └── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ ├── include │ │ └── treeInversion.h │ │ ├── input │ │ ├── main.cpp │ │ └── treeInversion.cpp ├── go │ ├── erocs │ │ └── invert_tree.go │ └── natdm │ │ ├── tree.go │ │ └── tree_test.go ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ ├── Challenge.hs │ │ └── Spec.hs ├── java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ ├── InvertBinaryTree.java │ │ │ └── Node.java │ └── zmiller91 │ │ └── src │ │ └── zmiller91 │ │ ├── InvertBinaryTree.java │ │ └── Node.java ├── javascript │ └── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ ├── binary-tree.js │ │ └── index.html ├── postscript │ └── moonpatroller │ │ ├── README.md │ │ └── invert_tree.txt ├── python │ ├── Atakyn │ │ └── c4.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ ├── Challenge4.py │ │ │ ├── Tree.py │ │ │ └── TreeNode.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── main.py │ ├── Mical │ │ ├── README.md │ │ └── srs │ │ │ └── main.py │ ├── OkraArmband │ │ ├── README.md │ │ ├── src │ │ │ └── challenge_4.py │ │ ├── tree.jpg │ │ └── treeReversed.jpg │ ├── ajschrier │ │ ├── InvertTree.py │ │ ├── InvertTreeTests.py │ │ └── README.md │ ├── bryantpq │ │ ├── README.md │ │ └── tree.py │ ├── dfdx2 │ │ ├── README.md │ │ └── binary1.py │ ├── hkl0902 │ │ └── Challenge_4.py │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ ├── btree.py │ │ │ └── test_invert.py │ ├── mjuiuc │ │ └── InvertBinaryTree-Easy.py │ ├── ning │ │ └── challenge_4.py │ ├── popcorn_anachronism │ │ ├── readme.md │ │ └── src │ │ │ └── challenge_4.py │ ├── sarcodian │ │ ├── README.md │ │ └── src │ │ │ └── challenge_4.py │ ├── shaowen │ │ ├── README.md │ │ └── bi_tree_reverse.py │ ├── slandau │ │ ├── README.md │ │ └── reverse_tree.py │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ ├── README.md │ │ │ └── challenge_4.py │ ├── system123 │ │ ├── README.md │ │ └── challenge4.py │ ├── tvanderwal │ │ ├── README.md │ │ └── src │ │ │ └── challenge_4.py │ ├── whiterd │ │ ├── README.md │ │ └── src │ │ │ └── invert_bin.py │ └── wost │ │ ├── Node.py │ │ └── main.py ├── scala │ └── ndsmith3 │ │ ├── BinaryTreeInversion.scala │ │ └── README.md ├── tree.jpg ├── treeReversed.jpg └── x86 │ └── x95 │ ├── README.md │ └── src │ ├── challenge4.c │ └── invertTree.s ├── challenge_5 ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── src │ │ └── challenge5.c ├── cpp │ ├── dewie102 │ │ ├── README.md │ │ └── src │ │ │ └── Difference.cpp │ ├── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ ├── findTheDifference.cpp │ │ │ ├── include │ │ │ └── findTheDifference.h │ │ │ └── main.cpp │ └── rbrt │ │ ├── README.md │ │ └── src │ │ └── [cpp]Challenge_5.cpp ├── elixir │ └── joegotflow83 │ │ └── find_difference │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config │ │ └── config.exs │ │ ├── lib │ │ └── find_difference.ex │ │ ├── mix.exs │ │ └── test │ │ ├── find_difference_test.exs │ │ └── test_helper.exs ├── go │ └── natdm │ │ ├── diff.go │ │ └── diff_test.go ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ ├── Challenge.hs │ │ └── Spec.hs ├── java │ ├── hkl0902 │ │ ├── FindTheDifference.java │ │ ├── Makefile │ │ ├── README.md │ │ └── UnitTest.java │ └── jdfurlan │ │ ├── README.md │ │ └── src │ │ └── FindTheDifference.java ├── javascript │ └── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ ├── find-the-difference.js │ │ └── index.html ├── postscript │ └── moonpatroller │ │ ├── README.md │ │ └── string_diff.txt ├── python │ ├── Atakyn │ │ └── c5.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ ├── FindTheDifference.py │ │ │ └── test.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ ├── FindTheDifference.py │ │ │ └── test.py │ ├── ajschrier │ │ ├── FindTheDifference.py │ │ ├── README.md │ │ └── test.py │ ├── alexbotello │ │ ├── FindTheDifference.py │ │ ├── README.md │ │ └── test.py │ ├── bryantpq │ │ ├── FindTheDifference.py │ │ └── test.py │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ ├── difference.py │ │ │ └── test.py │ ├── mjuiuc │ │ ├── FindTheDifference.py │ │ └── test.py │ ├── ning │ │ ├── FindTheDifference.py │ │ └── README.md │ ├── popcorn_anachronism │ │ ├── readme.md │ │ └── src │ │ │ ├── FindTheDifference.py │ │ │ └── test.py │ ├── sarcodian │ │ ├── README.md │ │ └── src │ │ │ ├── challenge_5.py │ │ │ └── unittest-from-mjuiuc │ │ │ ├── FindTheDifference.py │ │ │ └── test.py │ ├── shaowen │ │ ├── FindTheDifference.py │ │ └── test.py │ ├── slandau │ │ ├── FindTheDifference.py │ │ └── README.md │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ ├── FindTheDifference.py │ │ │ └── test.py │ ├── system123 │ │ ├── FindTheDifference.py │ │ └── test.py │ ├── tvanderwal │ │ ├── README.md │ │ └── src │ │ │ ├── FindTheDifference.py │ │ │ └── test.py │ └── wost │ │ ├── .gitignore │ │ ├── FindTheDifference.py │ │ ├── README.md │ │ └── test.py ├── ruby │ └── selectivealso │ │ ├── find_new.rb │ │ ├── methods.rb │ │ └── readme.md ├── rust │ └── deg4uss3r │ │ └── challenge_5 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── examples │ │ └── main.rs │ │ ├── src │ │ └── lib.rs │ │ └── tests │ │ ├── main.rs │ │ └── testfiles │ │ ├── o1 │ │ ├── o2 │ │ ├── o3 │ │ ├── t1 │ │ ├── t2 │ │ └── t3 ├── scala │ └── ndsmith3 │ │ ├── FindTheDifference.scala │ │ └── README.md └── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── t1 │ ├── t2 │ └── t3 ├── challenge_6 ├── README.md ├── cpp │ ├── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ ├── include │ │ │ ├── ranges.h │ │ │ └── tools.h │ │ │ ├── main.cpp │ │ │ ├── ranges.cpp │ │ │ └── tools.cpp │ └── rbrt │ │ ├── README.md │ │ └── src │ │ └── [cpp]Challenge_6.cpp ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ ├── Challenge.hs │ │ └── Spec.hs ├── java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ └── Ranges.java │ └── zmiller91 │ │ ├── README.md │ │ └── RangeArray.java ├── javascript │ └── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ ├── index.html │ │ └── ranges.js ├── postscript │ └── moonpatroller │ │ ├── README.md │ │ ├── compress-ranges.txt │ │ └── test-ranges.txt ├── python │ ├── Atakyn │ │ └── c6.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ ├── solution.py │ │ │ └── tests.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── ranges.py │ ├── ajschrier │ │ ├── IntRange.py │ │ ├── IntRangeTests.py │ │ └── README.md │ ├── alexbotello │ │ ├── README.md │ │ └── src │ │ │ ├── ranges.py │ │ │ └── tests.py │ ├── bryantpq │ │ └── ranges.py │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ ├── ranges.py │ │ │ └── test.py │ ├── mjuiuc │ │ ├── README.md │ │ ├── Solution.py │ │ └── test.py │ ├── ning │ │ ├── README.md │ │ ├── challenge_6.py │ │ └── test.py │ ├── sarcodian │ │ └── src │ │ │ ├── challenge_6.py │ │ │ └── challenge_6_tests.py │ ├── shaowen │ │ ├── ranges.py │ │ └── u_test.py │ ├── slandau3 │ │ ├── ranges.py │ │ └── tests.py │ └── system123 │ │ ├── challenge_6.py │ │ └── tests.py ├── ruby │ └── selectivealso │ │ └── ranges.rb ├── rust │ └── deg4uss3r │ │ └── challenge_6 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── examples │ │ └── main.rs │ │ ├── src │ │ └── lib.rs │ │ └── tests │ │ └── test.rs ├── scala │ └── ndsmith3 │ │ ├── README.md │ │ └── Ranges.scala └── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── o5 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ └── t5 ├── challenge_7 ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── missingNumber.c ├── cpp │ ├── manuel │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ ├── include │ │ │ └── tools.h │ │ │ ├── main.cpp │ │ │ └── tools.cpp │ └── rbrt │ │ └── src │ │ └── [cpp]Challenge_7.cpp ├── find_missing_num.py ├── haskell │ └── halogenandtoast │ │ ├── README.md │ │ └── src │ │ ├── Challenge.hs │ │ └── Spec.hs ├── java │ ├── jdfurlan │ │ ├── README.md │ │ └── src │ │ │ └── FindTheMissingNumber.java │ └── zmiller91 │ │ ├── MissingNumber.java │ │ └── README.md ├── javascript │ └── Zirhc86 │ │ ├── readme.md │ │ └── src │ │ ├── index.html │ │ └── missing-number.js ├── postscript │ ├── README.md │ └── find_missing.txt ├── python │ ├── Atakyn │ │ └── c7.py │ ├── CindyB │ │ ├── README.md │ │ └── src │ │ │ ├── solution.py │ │ │ └── tests.py │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ ├── missing.py │ │ │ └── tests.py │ ├── aemc │ │ ├── README.md │ │ ├── find_missing_number.py │ │ ├── src │ │ │ ├── find_missing_number.py │ │ │ └── tests.py │ │ └── tests.py │ ├── ajschrier │ │ ├── MissingNumber.py │ │ ├── README.md │ │ └── Test_MissingNumber.py │ ├── alexbotello │ │ ├── README.md │ │ ├── missing_num.py │ │ └── tests.py │ ├── bryantpq │ │ ├── README.md │ │ └── find_missing_number.py │ ├── mindm │ │ ├── README.md │ │ └── src │ │ │ ├── missing.py │ │ │ └── test.py │ ├── mjuiuc │ │ ├── README.md │ │ ├── solution.py │ │ └── test.py │ ├── ning │ │ ├── README.md │ │ ├── challenge_7.py │ │ └── test.py │ ├── sarcodian │ │ ├── READ.me │ │ └── src │ │ │ ├── challenge_7.py │ │ │ └── challenge_7_tests.py │ ├── slandau3 │ │ ├── find_missing_number.py │ │ └── tests.py │ ├── slansford │ │ ├── README.md │ │ └── src │ │ │ ├── challenge_7.py │ │ │ └── test.py │ ├── system123 │ │ ├── challenge_7.py │ │ └── tests.py │ └── wost │ │ └── find_missing_number.py ├── ruby │ └── selectivealso │ │ ├── missing_num.rb │ │ └── readme.md ├── rust │ └── josephpd3 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── src │ │ └── lib.rs │ │ └── tests │ │ └── test.rs ├── scala │ └── ndsmith3 │ │ ├── MissingNum.scala │ │ └── README.md ├── testfiles │ ├── o1 │ ├── o2 │ ├── o3 │ ├── o4 │ ├── o5 │ ├── t1 │ ├── t2 │ ├── t3 │ ├── t4 │ └── t5 └── x86 │ └── x95 │ ├── README.md │ └── src │ └── missingnumber.s ├── challenge_8 ├── ArbitLinked-List12.gif ├── README.md ├── c │ └── karanchawla │ │ ├── README.md │ │ └── randomDeepCopy.c ├── java │ ├── jdfurlan │ │ └── src │ │ │ └── RandomPointerLinkedList.java │ └── zmiller91 │ │ ├── README.md │ │ ├── RandomPointerLinkedList.java │ │ └── RandomPointerNode.java ├── linkedlist.jpg ├── python │ ├── Loran425 │ │ ├── README.md │ │ └── src │ │ │ └── linked_list.py │ ├── mjuiuc │ │ ├── README.md │ │ ├── listNode.py │ │ ├── solution.py │ │ └── test.py │ ├── slandau3 │ │ └── random_copy.py │ ├── system123 │ │ ├── README.md │ │ └── challenge_8.py │ └── wost │ │ ├── LinkedList.py │ │ ├── README.md │ │ └── main.py └── ruby │ └── selectivealso │ └── node.rb └── challenge_9 ├── C └── karanchawla │ └── src │ ├── README.md │ └── challenge9.c ├── README.md ├── cpp └── manuel │ ├── Makefile │ ├── README.md │ └── src │ ├── include │ └── tools.h │ ├── main.cpp │ └── tools.cpp ├── java ├── jdfurlan │ ├── README.md │ └── src │ │ └── Squares.java └── zmiller91 │ ├── README.md │ └── Squares.java ├── python ├── alexbotello │ ├── README.md │ └── src │ │ ├── square.py │ │ └── test.py ├── kar-moore │ ├── README.md │ ├── challenge9.py │ └── tests.py ├── mjuiuc │ ├── README.md │ ├── solution.py │ ├── solution_template.py │ └── test.py ├── ning │ ├── README.md │ ├── challenge_9.py │ └── test.py ├── sarcodian │ ├── READ.me │ └── src │ │ ├── challenge_9.py │ │ └── challenge_9_tests.py ├── shaowen │ ├── readme.md │ ├── square_sort.py │ └── unit_test.py ├── slandau3 │ ├── square.py │ └── test.py ├── system123 │ ├── challenge_9.py │ └── tests.py └── wost │ ├── README.md │ └── src │ └── main.py ├── ruby └── selectivealso │ └── squared_array.rb ├── rust └── josephpd3 │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── src │ └── lib.rs │ └── tests │ └── test.rs └── testfiles ├── o1 ├── o2 ├── o3 ├── o4 ├── o5 ├── o6 ├── t1 ├── t2 ├── t3 ├── t4 ├── t5 └── t6 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.5.2 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/README.md -------------------------------------------------------------------------------- /Unittesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/Unittesting.md -------------------------------------------------------------------------------- /_bin/cpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/_bin/cpr -------------------------------------------------------------------------------- /_bin/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/_bin/test -------------------------------------------------------------------------------- /challenge_0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/README.md -------------------------------------------------------------------------------- /challenge_0/bash/deku-jacktraf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/bash/deku-jacktraf/Readme.md -------------------------------------------------------------------------------- /challenge_0/bash/deku-jacktraf/hello-world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "Hello World!" 3 | -------------------------------------------------------------------------------- /challenge_0/bash/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/bash/ning/README.md -------------------------------------------------------------------------------- /challenge_0/bash/ning/challenge_0.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Hello world!" 4 | -------------------------------------------------------------------------------- /challenge_0/c/almyk/src/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/almyk/src/helloworld.c -------------------------------------------------------------------------------- /challenge_0/c/boilerup_brian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/boilerup_brian/README.md -------------------------------------------------------------------------------- /challenge_0/c/boilerup_brian/helloWorld.c: -------------------------------------------------------------------------------- 1 | #include 2 | main () { 3 | printf("Hello World!"); 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /challenge_0/c/nasciiboy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/nasciiboy/Makefile -------------------------------------------------------------------------------- /challenge_0/c/nasciiboy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/nasciiboy/README.md -------------------------------------------------------------------------------- /challenge_0/c/nasciiboy/src/main.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | puts( "Hello World!"); 5 | 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /challenge_0/c/scottsquatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/scottsquatch/Makefile -------------------------------------------------------------------------------- /challenge_0/c/scottsquatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/scottsquatch/README.md -------------------------------------------------------------------------------- /challenge_0/c/sysek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/sysek/README.md -------------------------------------------------------------------------------- /challenge_0/c/sysek/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/sysek/main.c -------------------------------------------------------------------------------- /challenge_0/c/tyleroar/README.md: -------------------------------------------------------------------------------- 1 | Hello World in C 2 | -------------------------------------------------------------------------------- /challenge_0/c/tyleroar/src/hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/tyleroar/src/hello_world.c -------------------------------------------------------------------------------- /challenge_0/c/xor-eax-eax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/xor-eax-eax/README.md -------------------------------------------------------------------------------- /challenge_0/c/zooks97/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/zooks97/README.md -------------------------------------------------------------------------------- /challenge_0/c/zooks97/src/helloWorld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/c/zooks97/src/helloWorld.c -------------------------------------------------------------------------------- /challenge_0/coffeescript/kedarbramhe/coffeescripts/hello_world.coffee: -------------------------------------------------------------------------------- 1 | console.log "hello world" 2 | -------------------------------------------------------------------------------- /challenge_0/cpp/alexbotello/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/alexbotello/main.cpp -------------------------------------------------------------------------------- /challenge_0/cpp/battlefrog/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/battlefrog/main.cpp -------------------------------------------------------------------------------- /challenge_0/cpp/battlefrog/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/battlefrog/readme.md -------------------------------------------------------------------------------- /challenge_0/cpp/blakebarnes00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/blakebarnes00/Makefile -------------------------------------------------------------------------------- /challenge_0/cpp/blakebarnes00/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout << "Hello World!\n"; 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /challenge_0/cpp/chowey/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/chowey/main.cpp -------------------------------------------------------------------------------- /challenge_0/cpp/chowey/readme.md: -------------------------------------------------------------------------------- 1 | Self-Explanatory. -------------------------------------------------------------------------------- /challenge_0/cpp/dewie102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/dewie102/README.md -------------------------------------------------------------------------------- /challenge_0/cpp/flavabox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/flavabox/main.cpp -------------------------------------------------------------------------------- /challenge_0/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_0/cpp/manuel/src/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/manuel/src/solution.cpp -------------------------------------------------------------------------------- /challenge_0/cpp/rbrt/README.md: -------------------------------------------------------------------------------- 1 | challenge 0: Hello World 2 | 3 | -------------------------------------------------------------------------------- /challenge_0/cpp/spudmonkey/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/spudmonkey/main.cpp -------------------------------------------------------------------------------- /challenge_0/cpp/sven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/sven/README.md -------------------------------------------------------------------------------- /challenge_0/cpp/sven/src/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/cpp/sven/src/HelloWorld.cpp -------------------------------------------------------------------------------- /challenge_0/csharp/bdoner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/csharp/bdoner/README.md -------------------------------------------------------------------------------- /challenge_0/csharp/bdoner/hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/csharp/bdoner/hello.cs -------------------------------------------------------------------------------- /challenge_0/csharp/fojo/helloworld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/csharp/fojo/helloworld.cs -------------------------------------------------------------------------------- /challenge_0/csharp/jfrancis2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/csharp/jfrancis2/README.md -------------------------------------------------------------------------------- /challenge_0/csharp/ross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/csharp/ross -------------------------------------------------------------------------------- /challenge_0/csharp/sven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/csharp/sven/README.md -------------------------------------------------------------------------------- /challenge_0/elixir/csuzw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/elixir/csuzw/README.md -------------------------------------------------------------------------------- /challenge_0/elixir/csuzw/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/elixir/csuzw/src/.gitignore -------------------------------------------------------------------------------- /challenge_0/elixir/csuzw/src/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/elixir/csuzw/src/mix.exs -------------------------------------------------------------------------------- /challenge_0/elixir/csuzw/src/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/elixir/csuzw/src/mix.lock -------------------------------------------------------------------------------- /challenge_0/elixir/csuzw/src/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /challenge_0/elixir/joegotflow83/main.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/elixir/joegotflow83/main.ex -------------------------------------------------------------------------------- /challenge_0/fsharp/mssabr01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/fsharp/mssabr01/README.md -------------------------------------------------------------------------------- /challenge_0/go/erocs/hello_world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/erocs/hello_world.go -------------------------------------------------------------------------------- /challenge_0/go/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/makernaren/README.md -------------------------------------------------------------------------------- /challenge_0/go/makernaren/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/makernaren/helloworld.go -------------------------------------------------------------------------------- /challenge_0/go/natdm/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/natdm/app.go -------------------------------------------------------------------------------- /challenge_0/go/shivams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/shivams/README.md -------------------------------------------------------------------------------- /challenge_0/go/shivams/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/shivams/hello.go -------------------------------------------------------------------------------- /challenge_0/go/tml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/tml/README.md -------------------------------------------------------------------------------- /challenge_0/go/tml/src/helloworld.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/go/tml/src/helloworld.go -------------------------------------------------------------------------------- /challenge_0/java/Leigh/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/java/Leigh/HelloWorld.java -------------------------------------------------------------------------------- /challenge_0/java/gwong/challenge_0.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/java/gwong/challenge_0.java -------------------------------------------------------------------------------- /challenge_0/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_0/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_0/javascript/raijinn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/javascript/raijinn/README.md -------------------------------------------------------------------------------- /challenge_0/javascript/rawphs/README.md: -------------------------------------------------------------------------------- 1 | # Challenge 0: Hello World! 2 | 3 | ## Usage 4 | On your terminal, run: 5 | 6 | `$ node index.js` -------------------------------------------------------------------------------- /challenge_0/javascript/rawphs/src/index.js: -------------------------------------------------------------------------------- 1 | console.log('Hello World!') 2 | -------------------------------------------------------------------------------- /challenge_0/javascript/saif/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/javascript/saif/README.md -------------------------------------------------------------------------------- /challenge_0/javascript/saif/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/javascript/saif/index.html -------------------------------------------------------------------------------- /challenge_0/javascript/ukirderohit/hello.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World"); -------------------------------------------------------------------------------- /challenge_0/julia/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/julia/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_0/julia/DTCitron/src/helloworld.jl: -------------------------------------------------------------------------------- 1 | println("Hello World!") 2 | -------------------------------------------------------------------------------- /challenge_0/php/selectivealso/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/php/selectivealso/readme.md -------------------------------------------------------------------------------- /challenge_0/python/Atakyn/c0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/Atakyn/c0.py -------------------------------------------------------------------------------- /challenge_0/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_0/python/CindyB/src/helloworld.py: -------------------------------------------------------------------------------- 1 | print 'Hello world!' 2 | -------------------------------------------------------------------------------- /challenge_0/python/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_0/python/DTCitron/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/DTCitron/src/main.py -------------------------------------------------------------------------------- /challenge_0/python/DTaylor1986/README.md: -------------------------------------------------------------------------------- 1 | A hello program using the print() function. 2 | -------------------------------------------------------------------------------- /challenge_0/python/DTaylor1986/src.py: -------------------------------------------------------------------------------- 1 | print("Hello Wold!") 2 | -------------------------------------------------------------------------------- /challenge_0/python/Fejolu/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/Fejolu/readme.md -------------------------------------------------------------------------------- /challenge_0/python/Fejolu/src/helloworld.py: -------------------------------------------------------------------------------- 1 | print 'Hello World' -------------------------------------------------------------------------------- /challenge_0/python/Jac08H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/Jac08H/README.md -------------------------------------------------------------------------------- /challenge_0/python/Jac08H/src/hello_world.py: -------------------------------------------------------------------------------- 1 | print("Hello world") 2 | -------------------------------------------------------------------------------- /challenge_0/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_0/python/Loran425/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/Loran425/src/main.py -------------------------------------------------------------------------------- /challenge_0/python/OkraArmband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/OkraArmband/README.md -------------------------------------------------------------------------------- /challenge_0/python/OkraArmband/src/hello_world.py: -------------------------------------------------------------------------------- 1 | print("Hello, world!") -------------------------------------------------------------------------------- /challenge_0/python/Tursup/Challenge #0.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /challenge_0/python/Tursup/README.MD: -------------------------------------------------------------------------------- 1 | Hello world with python 2.7 2 | -------------------------------------------------------------------------------- /challenge_0/python/Zanetti/challenge_0.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /challenge_0/python/Zjael/README.md: -------------------------------------------------------------------------------- 1 | Challenge 0 - Python 2 | 3 | Basic function that prints - Hello World! 4 | -------------------------------------------------------------------------------- /challenge_0/python/Zjael/src/Python_0.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /challenge_0/python/abhiramm7/challenge_0.py: -------------------------------------------------------------------------------- 1 | print('Hello World!') 2 | -------------------------------------------------------------------------------- /challenge_0/python/acronymcreations/src/hello.py: -------------------------------------------------------------------------------- 1 | print 'hello world' 2 | -------------------------------------------------------------------------------- /challenge_0/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_0/python/ajschrier/challenge-0.py: -------------------------------------------------------------------------------- 1 | print "Hello world!" -------------------------------------------------------------------------------- /challenge_0/python/alexmunoz905/main.py: -------------------------------------------------------------------------------- 1 | # AlexMunoz905 | 1/1/17 2 | 3 | print("Hello, world!") 4 | -------------------------------------------------------------------------------- /challenge_0/python/bryantpq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/bryantpq/README.md -------------------------------------------------------------------------------- /challenge_0/python/bryantpq/hello.py: -------------------------------------------------------------------------------- 1 | print('Hello World!') 2 | -------------------------------------------------------------------------------- /challenge_0/python/carter010/hello_world.py: -------------------------------------------------------------------------------- 1 | # python3 --3.5 2 | print("Hello World!") 3 | -------------------------------------------------------------------------------- /challenge_0/python/dashsten/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/dashsten/hello.py -------------------------------------------------------------------------------- /challenge_0/python/dfdx2/hello.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /challenge_0/python/dlutsch/README.md: -------------------------------------------------------------------------------- 1 | Amazing program that says hello to the world. Simply incredible. 2 | -------------------------------------------------------------------------------- /challenge_0/python/dlutsch/src/hello_world.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /challenge_0/python/dsyost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/dsyost/README.md -------------------------------------------------------------------------------- /challenge_0/python/dsyost/src/helloworld.py: -------------------------------------------------------------------------------- 1 | print("hello world") 2 | -------------------------------------------------------------------------------- /challenge_0/python/flickdm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/flickdm/Readme.md -------------------------------------------------------------------------------- /challenge_0/python/jcpattison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/jcpattison/README.md -------------------------------------------------------------------------------- /challenge_0/python/jcpattison/src/HelloWord.py: -------------------------------------------------------------------------------- 1 | 2 | print('Hello World') 3 | -------------------------------------------------------------------------------- /challenge_0/python/kar-moore/README.md: -------------------------------------------------------------------------------- 1 | hello! -------------------------------------------------------------------------------- /challenge_0/python/kar-moore/src/hello_world.py: -------------------------------------------------------------------------------- 1 | print("Hello World") -------------------------------------------------------------------------------- /challenge_0/python/kokimame/README.md: -------------------------------------------------------------------------------- 1 | Hello World in Python 3.5.1. 2 | -------------------------------------------------------------------------------- /challenge_0/python/kokimame/helloworld.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | -------------------------------------------------------------------------------- /challenge_0/python/lepmets/README.md: -------------------------------------------------------------------------------- 1 | Challenge #0 in Python 2 | -------------------------------------------------------------------------------- /challenge_0/python/lex32pem/readme.md: -------------------------------------------------------------------------------- 1 | Hello world with python 3.4 2 | -------------------------------------------------------------------------------- /challenge_0/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_0/python/mindm/src/hello.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # -*- coding: utf-8 -*- 3 | 4 | print("Hello, World!") 5 | 6 | -------------------------------------------------------------------------------- /challenge_0/python/mindovermiles262/src/challenge_00.py: -------------------------------------------------------------------------------- 1 | print("Hello, World") -------------------------------------------------------------------------------- /challenge_0/python/mjuiuc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/mjuiuc/README.md -------------------------------------------------------------------------------- /challenge_0/python/mjuiuc/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/mjuiuc/helloworld.py -------------------------------------------------------------------------------- /challenge_0/python/nebi/README.md: -------------------------------------------------------------------------------- 1 | A python 3.6 program that print "Hello World!" 2 | -------------------------------------------------------------------------------- /challenge_0/python/nebi/src/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/nebi/src/hello.py -------------------------------------------------------------------------------- /challenge_0/python/ning/challenge_0.py: -------------------------------------------------------------------------------- 1 | print('Hello World!') 2 | -------------------------------------------------------------------------------- /challenge_0/python/paper-squares/helloworld.py: -------------------------------------------------------------------------------- 1 | print 'Hello World' 2 | -------------------------------------------------------------------------------- /challenge_0/python/phil-harmoniq/challenge_0.py: -------------------------------------------------------------------------------- 1 | print('Hello, world!') 2 | -------------------------------------------------------------------------------- /challenge_0/python/polar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/polar/README.md -------------------------------------------------------------------------------- /challenge_0/python/polar/src/helloWorld.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") 2 | -------------------------------------------------------------------------------- /challenge_0/python/popcorn_anachronism/challenge_0.py: -------------------------------------------------------------------------------- 1 | print("hello world!") 2 | -------------------------------------------------------------------------------- /challenge_0/python/popcorn_anachronism/readme.md: -------------------------------------------------------------------------------- 1 | hello world! using python 3 2 | -------------------------------------------------------------------------------- /challenge_0/python/psonghi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/psonghi/README.md -------------------------------------------------------------------------------- /challenge_0/python/returnlove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/returnlove/README.md -------------------------------------------------------------------------------- /challenge_0/python/returnlove/src/helloworld.py: -------------------------------------------------------------------------------- 1 | print("Hello World!") -------------------------------------------------------------------------------- /challenge_0/python/sarcodian/src/challenge_0.py: -------------------------------------------------------------------------------- 1 | print('Hello World') -------------------------------------------------------------------------------- /challenge_0/python/shaowen/helloworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/shaowen/helloworld.py -------------------------------------------------------------------------------- /challenge_0/python/slandau/README.md: -------------------------------------------------------------------------------- 1 | Challenge 0 in python by Steven Landau 2 | -------------------------------------------------------------------------------- /challenge_0/python/slandau/hello_world.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | if __name__ == '__main__': 4 | print('Hello World!') 5 | -------------------------------------------------------------------------------- /challenge_0/python/slansford/README.md: -------------------------------------------------------------------------------- 1 | #Prints Hello World! 2 | #Looking forward to these challenges! -------------------------------------------------------------------------------- /challenge_0/python/slickness/Challenge_0.py: -------------------------------------------------------------------------------- 1 | print ("Hello World!") 2 | 3 | -------------------------------------------------------------------------------- /challenge_0/python/slickness/README.MD: -------------------------------------------------------------------------------- 1 | Hello world with python 3.5 2 | -------------------------------------------------------------------------------- /challenge_0/python/sten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/sten -------------------------------------------------------------------------------- /challenge_0/python/sysek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/sysek/README.md -------------------------------------------------------------------------------- /challenge_0/python/sysek/src/hello.py: -------------------------------------------------------------------------------- 1 | print('hello world!') 2 | -------------------------------------------------------------------------------- /challenge_0/python/system123/README.md: -------------------------------------------------------------------------------- 1 | Python 3 - Hello World 2 | 3 | Run with: ./challenge0.py -------------------------------------------------------------------------------- /challenge_0/python/system123/challenge0.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | print("Hello World!") 4 | -------------------------------------------------------------------------------- /challenge_0/python/tavery321/README.md: -------------------------------------------------------------------------------- 1 | A program written in python which prints "Hello World" 2 | -------------------------------------------------------------------------------- /challenge_0/python/tavery321/src/c0.py: -------------------------------------------------------------------------------- 1 | print("Hello World") 2 | 3 | -------------------------------------------------------------------------------- /challenge_0/python/tvanderwal/README.md: -------------------------------------------------------------------------------- 1 | challenge_0.py 2 | 3 | use: Prints 'Hello World!' to the console -------------------------------------------------------------------------------- /challenge_0/python/tvanderwal/src/challenge_0.py: -------------------------------------------------------------------------------- 1 | print('Hello World!') -------------------------------------------------------------------------------- /challenge_0/python/ukirderohit/helloworld.py: -------------------------------------------------------------------------------- 1 | print("Hello, World") 2 | -------------------------------------------------------------------------------- /challenge_0/python/walkingluo/README.md: -------------------------------------------------------------------------------- 1 | ## Challenge_0 2 | 3 | - Print Hello World -------------------------------------------------------------------------------- /challenge_0/python/whiterd/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenge_0/python/wobboz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/wobboz/README.md -------------------------------------------------------------------------------- /challenge_0/python/wobboz/src/HelloWorld.py: -------------------------------------------------------------------------------- 1 | print("Hello World") -------------------------------------------------------------------------------- /challenge_0/python/wost/README.md: -------------------------------------------------------------------------------- 1 | Hello World in Python 3.6! 2 | -------------------------------------------------------------------------------- /challenge_0/python/wost/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/wost/main.py -------------------------------------------------------------------------------- /challenge_0/python/zooks97/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/python/zooks97/README.md -------------------------------------------------------------------------------- /challenge_0/r/aev1tas/HelloWorld.R: -------------------------------------------------------------------------------- 1 | "Hello World" 2 | 3 | #thats it lol 4 | -------------------------------------------------------------------------------- /challenge_0/ruby/ConorWright/README.md: -------------------------------------------------------------------------------- 1 | Make sure you have ruby installed. 2 | 3 | run with ./hello_world.rb 4 | -------------------------------------------------------------------------------- /challenge_0/ruby/ConorWright/hello_world.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | 3 | puts "Hello World!" 4 | -------------------------------------------------------------------------------- /challenge_0/rust/deg4uss3r/challenge_0/challenge_0: -------------------------------------------------------------------------------- 1 | ./target/release/challenge_0 -------------------------------------------------------------------------------- /challenge_0/rust/josephpd3/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /challenge_0/rust/josephpd3/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "josephpd3" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_0/rust/josephpd3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/josephpd3/Cargo.toml -------------------------------------------------------------------------------- /challenge_0/rust/josephpd3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/josephpd3/README.md -------------------------------------------------------------------------------- /challenge_0/rust/josephpd3/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/josephpd3/src/main.rs -------------------------------------------------------------------------------- /challenge_0/rust/makernaren/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "hello_world" 3 | version = "0.0.1" 4 | 5 | -------------------------------------------------------------------------------- /challenge_0/rust/makernaren/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/makernaren/Cargo.toml -------------------------------------------------------------------------------- /challenge_0/rust/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/makernaren/README.md -------------------------------------------------------------------------------- /challenge_0/rust/makernaren/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } -------------------------------------------------------------------------------- /challenge_0/rust/myrrlyn/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "myrrlyn" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_0/rust/myrrlyn/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/myrrlyn/Cargo.toml -------------------------------------------------------------------------------- /challenge_0/rust/myrrlyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/rust/myrrlyn/README.md -------------------------------------------------------------------------------- /challenge_0/rust/myrrlyn/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /challenge_0/swift/garytate/challenge_0.swift: -------------------------------------------------------------------------------- 1 | print("Hello World! Challenge 0 by Gary Tate") 2 | -------------------------------------------------------------------------------- /challenge_0/swift/stevenr12/HelloWorld.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | print("Hello, world!") 4 | -------------------------------------------------------------------------------- /challenge_0/x86/x95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/x86/x95/README.md -------------------------------------------------------------------------------- /challenge_0/x86/x95/src/helloworld.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_0/x86/x95/src/helloworld.s -------------------------------------------------------------------------------- /challenge_1/Julia/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/Julia/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/README.md -------------------------------------------------------------------------------- /challenge_1/bash/deku-jacktraf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/bash/deku-jacktraf/Readme.md -------------------------------------------------------------------------------- /challenge_1/c/almyk/src/challenge1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/almyk/src/challenge1.c -------------------------------------------------------------------------------- /challenge_1/c/boilerup_brian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/boilerup_brian/README.md -------------------------------------------------------------------------------- /challenge_1/c/jrtn/reverse_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/jrtn/reverse_string.c -------------------------------------------------------------------------------- /challenge_1/c/kmaitski/reverse_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/kmaitski/reverse_string.c -------------------------------------------------------------------------------- /challenge_1/c/nasciiboy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/nasciiboy/Makefile -------------------------------------------------------------------------------- /challenge_1/c/nasciiboy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/nasciiboy/README.md -------------------------------------------------------------------------------- /challenge_1/c/nasciiboy/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/nasciiboy/src/main.c -------------------------------------------------------------------------------- /challenge_1/c/scottsquatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/scottsquatch/Makefile -------------------------------------------------------------------------------- /challenge_1/c/scottsquatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/scottsquatch/README.md -------------------------------------------------------------------------------- /challenge_1/c/scottsquatch/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/scottsquatch/src/main.c -------------------------------------------------------------------------------- /challenge_1/c/tyleroar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/tyleroar/README.md -------------------------------------------------------------------------------- /challenge_1/c/tyleroar/src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/tyleroar/src/strings.c -------------------------------------------------------------------------------- /challenge_1/c/woser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/woser/README.md -------------------------------------------------------------------------------- /challenge_1/c/woser/src/string_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/woser/src/string_reverse.c -------------------------------------------------------------------------------- /challenge_1/c/xor-eax-eax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/xor-eax-eax/README.md -------------------------------------------------------------------------------- /challenge_1/c/zooks97/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/zooks97/README.md -------------------------------------------------------------------------------- /challenge_1/c/zooks97/src/reverseInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/c/zooks97/src/reverseInput.c -------------------------------------------------------------------------------- /challenge_1/cpp/alexbotello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/alexbotello/README.md -------------------------------------------------------------------------------- /challenge_1/cpp/alexbotello/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/alexbotello/src/main.cpp -------------------------------------------------------------------------------- /challenge_1/cpp/blakebarnes00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/blakebarnes00/Makefile -------------------------------------------------------------------------------- /challenge_1/cpp/blakebarnes00/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/blakebarnes00/main.cpp -------------------------------------------------------------------------------- /challenge_1/cpp/chowey/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/chowey/main.cpp -------------------------------------------------------------------------------- /challenge_1/cpp/chowey/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/chowey/readme.md -------------------------------------------------------------------------------- /challenge_1/cpp/dewie102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/dewie102/README.md -------------------------------------------------------------------------------- /challenge_1/cpp/flickdm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/flickdm/Readme.md -------------------------------------------------------------------------------- /challenge_1/cpp/flickdm/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/flickdm/src/main.cpp -------------------------------------------------------------------------------- /challenge_1/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_1/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_1/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_1/cpp/rbrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/rbrt/README.md -------------------------------------------------------------------------------- /challenge_1/cpp/sven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/sven/README.md -------------------------------------------------------------------------------- /challenge_1/cpp/sven/src/Reverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/cpp/sven/src/Reverse.cpp -------------------------------------------------------------------------------- /challenge_1/csharp/bdoner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/bdoner/README.md -------------------------------------------------------------------------------- /challenge_1/csharp/bdoner/esrever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/bdoner/esrever.cs -------------------------------------------------------------------------------- /challenge_1/csharp/fojo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/fojo/Program.cs -------------------------------------------------------------------------------- /challenge_1/csharp/jfrancis2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/jfrancis2/README.md -------------------------------------------------------------------------------- /challenge_1/csharp/ross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/ross -------------------------------------------------------------------------------- /challenge_1/csharp/sven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/sven/README.md -------------------------------------------------------------------------------- /challenge_1/csharp/sven/src/Reverse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/csharp/sven/src/Reverse.cs -------------------------------------------------------------------------------- /challenge_1/elixir/csuzw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/elixir/csuzw/README.md -------------------------------------------------------------------------------- /challenge_1/elixir/csuzw/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/elixir/csuzw/src/.gitignore -------------------------------------------------------------------------------- /challenge_1/elixir/csuzw/src/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/elixir/csuzw/src/mix.exs -------------------------------------------------------------------------------- /challenge_1/elixir/csuzw/src/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/elixir/csuzw/src/mix.lock -------------------------------------------------------------------------------- /challenge_1/elixir/csuzw/src/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /challenge_1/elixir/joegotflow83/reverse/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /challenge_1/go/erocs/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/erocs/reverse.go -------------------------------------------------------------------------------- /challenge_1/go/igniteflow/README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | $ go run src/challenge_1.go 3 | easy as abc 4 | cba sa ysae 5 | ``` 6 | -------------------------------------------------------------------------------- /challenge_1/go/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/makernaren/README.md -------------------------------------------------------------------------------- /challenge_1/go/natdm/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/natdm/reverse.go -------------------------------------------------------------------------------- /challenge_1/go/natdm/reverse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/natdm/reverse_test.go -------------------------------------------------------------------------------- /challenge_1/go/rchicoli/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/rchicoli/reverse.go -------------------------------------------------------------------------------- /challenge_1/go/rchicoli/reverse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/rchicoli/reverse_test.go -------------------------------------------------------------------------------- /challenge_1/go/shivams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/shivams/README.md -------------------------------------------------------------------------------- /challenge_1/go/shivams/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/shivams/reverse.go -------------------------------------------------------------------------------- /challenge_1/go/tml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/tml/README.md -------------------------------------------------------------------------------- /challenge_1/go/tml/src/strrev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/go/tml/src/strrev.go -------------------------------------------------------------------------------- /challenge_1/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_1/java/togden/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/java/togden/README.md -------------------------------------------------------------------------------- /challenge_1/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_1/javascript/raijinn/README.md: -------------------------------------------------------------------------------- 1 | Goal: Reverse given string. 2 | -------------------------------------------------------------------------------- /challenge_1/javascript/rawphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/javascript/rawphs/README.md -------------------------------------------------------------------------------- /challenge_1/php/jarydremillard/challenge_1.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /challenge_1/php/selectivealso/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/php/selectivealso/readme.md -------------------------------------------------------------------------------- /challenge_1/python/Atakyn/c1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/Atakyn/c1.py -------------------------------------------------------------------------------- /challenge_1/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_1/python/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_1/python/DTCitron/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/DTCitron/src/main.py -------------------------------------------------------------------------------- /challenge_1/python/DakRomo/Challenge_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/DakRomo/Challenge_1 -------------------------------------------------------------------------------- /challenge_1/python/Jac08H/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/Jac08H/README.md -------------------------------------------------------------------------------- /challenge_1/python/Jac08H/src/solution.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | str = input() 4 | print(str[::-1]) 5 | -------------------------------------------------------------------------------- /challenge_1/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_1/python/Loran425/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/Loran425/src/main.py -------------------------------------------------------------------------------- /challenge_1/python/MicalV/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/MicalV/main.py -------------------------------------------------------------------------------- /challenge_1/python/OkraArmband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/OkraArmband/README.md -------------------------------------------------------------------------------- /challenge_1/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_1/python/ajschrier/challenge_1.py: -------------------------------------------------------------------------------- 1 | # Reverse a string 2 | 3 | s = 'hello' 4 | 5 | print s[::-1] 6 | -------------------------------------------------------------------------------- /challenge_1/python/alexbotello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/alexbotello/README.md -------------------------------------------------------------------------------- /challenge_1/python/alexbotello/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/alexbotello/main.py -------------------------------------------------------------------------------- /challenge_1/python/alexmunoz905/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/alexmunoz905/main.py -------------------------------------------------------------------------------- /challenge_1/python/bryantpq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/bryantpq/README.md -------------------------------------------------------------------------------- /challenge_1/python/bryantpq/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/bryantpq/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/carter010/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/carter010/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/dashsten/challenge_1.py: -------------------------------------------------------------------------------- 1 | print 'hello world'[::-1] 2 | -------------------------------------------------------------------------------- /challenge_1/python/dfdx2/reverse.py: -------------------------------------------------------------------------------- 1 | print("hello"[::-1]) -------------------------------------------------------------------------------- /challenge_1/python/dlutsch/reverse_string.py: -------------------------------------------------------------------------------- 1 | print(input("Enter string to be reversed: ")[::-1]) 2 | -------------------------------------------------------------------------------- /challenge_1/python/dsyost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/dsyost/README.md -------------------------------------------------------------------------------- /challenge_1/python/dsyost/src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/dsyost/src/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/gshooty/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/gshooty/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/gwong/challenge_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/gwong/challenge_1.py -------------------------------------------------------------------------------- /challenge_1/python/igniteflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/igniteflow/README.md -------------------------------------------------------------------------------- /challenge_1/python/jcpattison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/jcpattison/README.md -------------------------------------------------------------------------------- /challenge_1/python/jcpattison/src/reverse.py: -------------------------------------------------------------------------------- 1 | a = input("Enter your string to reverse: \n") 2 | print(a[::-1]) 3 | -------------------------------------------------------------------------------- /challenge_1/python/kar-moore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/kar-moore/README.md -------------------------------------------------------------------------------- /challenge_1/python/kokimame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/kokimame/README.md -------------------------------------------------------------------------------- /challenge_1/python/lepmets/README.md: -------------------------------------------------------------------------------- 1 | # Challenge #1 in Python 2 | -------------------------------------------------------------------------------- /challenge_1/python/lex32pem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/lex32pem/readme.md -------------------------------------------------------------------------------- /challenge_1/python/manuel/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/manuel/solution.py -------------------------------------------------------------------------------- /challenge_1/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_1/python/mindm/src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/mindm/src/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/nebi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/nebi/README.md -------------------------------------------------------------------------------- /challenge_1/python/nebi/src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/nebi/src/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/ning/challenge_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/ning/challenge_1.py -------------------------------------------------------------------------------- /challenge_1/python/polar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/polar/README.md -------------------------------------------------------------------------------- /challenge_1/python/polar/src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/polar/src/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/popcorn_anachronism/challenge_1.py: -------------------------------------------------------------------------------- 1 | text = input() 2 | print(text[::-1]) 3 | -------------------------------------------------------------------------------- /challenge_1/python/psonghi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/psonghi/README.md -------------------------------------------------------------------------------- /challenge_1/python/returnlove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/returnlove/README.md -------------------------------------------------------------------------------- /challenge_1/python/sarcodian/README.md: -------------------------------------------------------------------------------- 1 | Reversing a string -------------------------------------------------------------------------------- /challenge_1/python/shaowen/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/shaowen/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/slandau/README.md: -------------------------------------------------------------------------------- 1 | Challange 1, reverse a string by Steven Landau 2 | -------------------------------------------------------------------------------- /challenge_1/python/slandau/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/slandau/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/slansford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/slansford/README.md -------------------------------------------------------------------------------- /challenge_1/python/slickness/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/slickness/README.MD -------------------------------------------------------------------------------- /challenge_1/python/sysek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/sysek/README.md -------------------------------------------------------------------------------- /challenge_1/python/sysek/src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/sysek/src/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/system123/README.md: -------------------------------------------------------------------------------- 1 | run it with: 2 | 3 | python3 challenge1.py -------------------------------------------------------------------------------- /challenge_1/python/tavery321/README.md: -------------------------------------------------------------------------------- 1 | Python program that reverses a string 2 | -------------------------------------------------------------------------------- /challenge_1/python/tavery321/src/c1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/tavery321/src/c1.py -------------------------------------------------------------------------------- /challenge_1/python/tursup/READMEE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/tursup/READMEE.MD -------------------------------------------------------------------------------- /challenge_1/python/tursup/challenge1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/tursup/challenge1.py -------------------------------------------------------------------------------- /challenge_1/python/ukirderohit/reverse.py: -------------------------------------------------------------------------------- 1 | print(input("Enter string: ")[::-1]) 2 | -------------------------------------------------------------------------------- /challenge_1/python/walkingluo/README.md: -------------------------------------------------------------------------------- 1 | ## Challenge_1 2 | 3 | - reverse a string -------------------------------------------------------------------------------- /challenge_1/python/whiterd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/whiterd/README.md -------------------------------------------------------------------------------- /challenge_1/python/wobboz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/wobboz/README.md -------------------------------------------------------------------------------- /challenge_1/python/wobboz/src/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/wobboz/src/reverse.py -------------------------------------------------------------------------------- /challenge_1/python/wost/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/wost/main.py -------------------------------------------------------------------------------- /challenge_1/python/zooks97/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/python/zooks97/README.md -------------------------------------------------------------------------------- /challenge_1/r/aev1tas/ReverseString.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/r/aev1tas/ReverseString.R -------------------------------------------------------------------------------- /challenge_1/r/henriquefb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/r/henriquefb/README.md -------------------------------------------------------------------------------- /challenge_1/r/henriquefb/challenge_1.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/r/henriquefb/challenge_1.R -------------------------------------------------------------------------------- /challenge_1/ruby/ConorWright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/ruby/ConorWright/README.md -------------------------------------------------------------------------------- /challenge_1/rust/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /challenge_1/rust/deg4uss3r/challenge_1/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "challenge_1" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_1/rust/josephpd3/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "josephpd3" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_1/rust/josephpd3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/josephpd3/Cargo.toml -------------------------------------------------------------------------------- /challenge_1/rust/josephpd3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/josephpd3/README.md -------------------------------------------------------------------------------- /challenge_1/rust/josephpd3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/josephpd3/src/lib.rs -------------------------------------------------------------------------------- /challenge_1/rust/makernaren/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "makernaren" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_1/rust/makernaren/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/makernaren/Cargo.toml -------------------------------------------------------------------------------- /challenge_1/rust/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/makernaren/README.md -------------------------------------------------------------------------------- /challenge_1/rust/makernaren/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/makernaren/src/main.rs -------------------------------------------------------------------------------- /challenge_1/rust/myrrlyn/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "myrrlyn" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_1/rust/myrrlyn/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/myrrlyn/Cargo.toml -------------------------------------------------------------------------------- /challenge_1/rust/myrrlyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/myrrlyn/README.md -------------------------------------------------------------------------------- /challenge_1/rust/myrrlyn/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/rust/myrrlyn/src/main.rs -------------------------------------------------------------------------------- /challenge_1/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_1/swift/stevenr12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/swift/stevenr12/README.md -------------------------------------------------------------------------------- /challenge_1/testfiles/o1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/o1 -------------------------------------------------------------------------------- /challenge_1/testfiles/o2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/o2 -------------------------------------------------------------------------------- /challenge_1/testfiles/o3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/o3 -------------------------------------------------------------------------------- /challenge_1/testfiles/o4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/o4 -------------------------------------------------------------------------------- /challenge_1/testfiles/o5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/o5 -------------------------------------------------------------------------------- /challenge_1/testfiles/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/t1 -------------------------------------------------------------------------------- /challenge_1/testfiles/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/t2 -------------------------------------------------------------------------------- /challenge_1/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/t3 -------------------------------------------------------------------------------- /challenge_1/testfiles/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/t4 -------------------------------------------------------------------------------- /challenge_1/testfiles/t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/testfiles/t5 -------------------------------------------------------------------------------- /challenge_1/x86/x95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/x86/x95/README.md -------------------------------------------------------------------------------- /challenge_1/x86/x95/src/reversestring.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_1/x86/x95/src/reversestring.s -------------------------------------------------------------------------------- /challenge_10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/README.md -------------------------------------------------------------------------------- /challenge_10/java/zmiller91/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/java/zmiller91/README.md -------------------------------------------------------------------------------- /challenge_10/java/zmiller91/YOP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/java/zmiller91/YOP.java -------------------------------------------------------------------------------- /challenge_10/python/loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/loran425/README.md -------------------------------------------------------------------------------- /challenge_10/python/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/ning/README.md -------------------------------------------------------------------------------- /challenge_10/python/ning/challenge_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/ning/challenge_10.py -------------------------------------------------------------------------------- /challenge_10/python/ning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/ning/test.py -------------------------------------------------------------------------------- /challenge_10/python/sarcodian/READ.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/sarcodian/READ.me -------------------------------------------------------------------------------- /challenge_10/python/shaowen/READE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/shaowen/READE.md -------------------------------------------------------------------------------- /challenge_10/python/shaowen/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/shaowen/solution.py -------------------------------------------------------------------------------- /challenge_10/python/shaowen/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/shaowen/unit_test.py -------------------------------------------------------------------------------- /challenge_10/python/slandau3/closers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/slandau3/closers.py -------------------------------------------------------------------------------- /challenge_10/python/slandau3/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/slandau3/tests.py -------------------------------------------------------------------------------- /challenge_10/python/system123/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/python/system123/tests.py -------------------------------------------------------------------------------- /challenge_10/rust/deg4uss3r/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o1: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o2: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o3: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o4: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o5: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o6: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o7: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o8: -------------------------------------------------------------------------------- 1 | False 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/o9: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t1: -------------------------------------------------------------------------------- 1 | {{{}}} 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t2: -------------------------------------------------------------------------------- 1 | {{[[((ajfdafje))3jkad]jd]da}d} 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t3: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t4: -------------------------------------------------------------------------------- 1 | () 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t5: -------------------------------------------------------------------------------- 1 | dajkf[afda]dafdsa 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/testfiles/t6 -------------------------------------------------------------------------------- /challenge_10/testfiles/t7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/testfiles/t7 -------------------------------------------------------------------------------- /challenge_10/testfiles/t8: -------------------------------------------------------------------------------- 1 | {{{[}}}}dafda 2 | -------------------------------------------------------------------------------- /challenge_10/testfiles/t9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/testfiles/t9 -------------------------------------------------------------------------------- /challenge_10/x86/x95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/x86/x95/README.md -------------------------------------------------------------------------------- /challenge_10/x86/x95/src/brackets.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/x86/x95/src/brackets.s -------------------------------------------------------------------------------- /challenge_10/x86/x95/src/challenge10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_10/x86/x95/src/challenge10.c -------------------------------------------------------------------------------- /challenge_11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/README.md -------------------------------------------------------------------------------- /challenge_11/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_11/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_11/cpp/manuel/src/BST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/cpp/manuel/src/BST.cpp -------------------------------------------------------------------------------- /challenge_11/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_11/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_11/python/mindm/src/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/python/mindm/src/btree.py -------------------------------------------------------------------------------- /challenge_11/python/slandau3/bst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/python/slandau3/bst.py -------------------------------------------------------------------------------- /challenge_11/testfiles/o1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/o1 -------------------------------------------------------------------------------- /challenge_11/testfiles/o2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/o2 -------------------------------------------------------------------------------- /challenge_11/testfiles/o3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/o3 -------------------------------------------------------------------------------- /challenge_11/testfiles/o4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/o4 -------------------------------------------------------------------------------- /challenge_11/testfiles/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/t1 -------------------------------------------------------------------------------- /challenge_11/testfiles/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/t2 -------------------------------------------------------------------------------- /challenge_11/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/t3 -------------------------------------------------------------------------------- /challenge_11/testfiles/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_11/testfiles/t4 -------------------------------------------------------------------------------- /challenge_12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_12/README.md -------------------------------------------------------------------------------- /challenge_12/python/sarcodian/READ.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_12/python/sarcodian/READ.me -------------------------------------------------------------------------------- /challenge_12/python/slandau3/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_12/python/slandau3/tests.py -------------------------------------------------------------------------------- /challenge_13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/README.md -------------------------------------------------------------------------------- /challenge_13/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_13/python/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/python/ning/README.md -------------------------------------------------------------------------------- /challenge_13/python/ning/challenge_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/python/ning/challenge_13.py -------------------------------------------------------------------------------- /challenge_13/python/ning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/python/ning/test.py -------------------------------------------------------------------------------- /challenge_13/python/sarcodian/READ.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/python/sarcodian/READ.me -------------------------------------------------------------------------------- /challenge_13/python/system123/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_13/python/system123/tests.py -------------------------------------------------------------------------------- /challenge_13/rust/deg4uss3r/challenge_13/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "challenge_13" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_13/tests/test1: -------------------------------------------------------------------------------- 1 | 1221 2 | -------------------------------------------------------------------------------- /challenge_13/tests/test2: -------------------------------------------------------------------------------- 1 | 18433481 2 | -------------------------------------------------------------------------------- /challenge_13/tests/test3: -------------------------------------------------------------------------------- 1 | 102 2 | -------------------------------------------------------------------------------- /challenge_13/tests/test4: -------------------------------------------------------------------------------- 1 | 5055 2 | -------------------------------------------------------------------------------- /challenge_13/tests/test5: -------------------------------------------------------------------------------- 1 | 666 2 | -------------------------------------------------------------------------------- /challenge_14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_14/README.md -------------------------------------------------------------------------------- /challenge_14/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_14/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_14/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_14/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_14/tests/test1: -------------------------------------------------------------------------------- 1 | r e d r u m 2 | -------------------------------------------------------------------------------- /challenge_14/tests/test2: -------------------------------------------------------------------------------- 1 | p a r k 2 | -------------------------------------------------------------------------------- /challenge_14/tests/test3: -------------------------------------------------------------------------------- 1 | b o o b y t r a p 2 | -------------------------------------------------------------------------------- /challenge_14/tests/test4: -------------------------------------------------------------------------------- 1 | l i v e 2 | -------------------------------------------------------------------------------- /challenge_15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_15/README.md -------------------------------------------------------------------------------- /challenge_16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_16/README.md -------------------------------------------------------------------------------- /challenge_16/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_16/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_16/cpp/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_16/cpp/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_16/python/slandau3/perm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_16/python/slandau3/perm.py -------------------------------------------------------------------------------- /challenge_17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_17/README.md -------------------------------------------------------------------------------- /challenge_17/python/slandau3/change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_17/python/slandau3/change.py -------------------------------------------------------------------------------- /challenge_18/C/yourpalnurav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_18/C/yourpalnurav/README.md -------------------------------------------------------------------------------- /challenge_18/C/yourpalnurav/YPN_Paths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_18/C/yourpalnurav/YPN_Paths.c -------------------------------------------------------------------------------- /challenge_18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_18/README.md -------------------------------------------------------------------------------- /challenge_18/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_18/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_18/python/slandau3/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_18/python/slandau3/paths.py -------------------------------------------------------------------------------- /challenge_2/Java/Leigh/Histogram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/Java/Leigh/Histogram.java -------------------------------------------------------------------------------- /challenge_2/Java/Leigh/SingleNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/Java/Leigh/SingleNumber.java -------------------------------------------------------------------------------- /challenge_2/Julia/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/Julia/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/README.md -------------------------------------------------------------------------------- /challenge_2/c/almyk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/almyk/README.md -------------------------------------------------------------------------------- /challenge_2/c/almyk/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/almyk/src/main.c -------------------------------------------------------------------------------- /challenge_2/c/nasciiboy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/nasciiboy/Makefile -------------------------------------------------------------------------------- /challenge_2/c/nasciiboy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/nasciiboy/README.md -------------------------------------------------------------------------------- /challenge_2/c/nasciiboy/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/nasciiboy/src/main.c -------------------------------------------------------------------------------- /challenge_2/c/scottsquatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/scottsquatch/Makefile -------------------------------------------------------------------------------- /challenge_2/c/scottsquatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/scottsquatch/README.md -------------------------------------------------------------------------------- /challenge_2/c/scottsquatch/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/scottsquatch/src/main.c -------------------------------------------------------------------------------- /challenge_2/c/xor-eax-eax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/c/xor-eax-eax/README.md -------------------------------------------------------------------------------- /challenge_2/cpp/blakebarnes00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/blakebarnes00/Makefile -------------------------------------------------------------------------------- /challenge_2/cpp/dewie102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/dewie102/README.md -------------------------------------------------------------------------------- /challenge_2/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_2/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_2/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_2/cpp/sven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/sven/README.md -------------------------------------------------------------------------------- /challenge_2/cpp/sven/src/Single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/cpp/sven/src/Single.cpp -------------------------------------------------------------------------------- /challenge_2/csharp/bdoner/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenge_2/csharp/bdoner/single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/csharp/bdoner/single.cs -------------------------------------------------------------------------------- /challenge_2/csharp/fojo/Challenge2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/csharp/fojo/Challenge2.cs -------------------------------------------------------------------------------- /challenge_2/csharp/sven/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/csharp/sven/README.md -------------------------------------------------------------------------------- /challenge_2/csharp/sven/src/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/csharp/sven/src/Single.cs -------------------------------------------------------------------------------- /challenge_2/elixir/joegotflow83/single_number/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /challenge_2/go/erocs/find_singleton.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/go/erocs/find_singleton.go -------------------------------------------------------------------------------- /challenge_2/go/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/go/makernaren/README.md -------------------------------------------------------------------------------- /challenge_2/go/natdm/single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/go/natdm/single.go -------------------------------------------------------------------------------- /challenge_2/go/natdm/single_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/go/natdm/single_test.go -------------------------------------------------------------------------------- /challenge_2/go/rchicoli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/go/rchicoli/README.md -------------------------------------------------------------------------------- /challenge_2/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_2/java/jrtn/SingleNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/java/jrtn/SingleNumber.java -------------------------------------------------------------------------------- /challenge_2/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_2/javascript/rawphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/javascript/rawphs/README.md -------------------------------------------------------------------------------- /challenge_2/javascript/rawphs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/javascript/rawphs/index.js -------------------------------------------------------------------------------- /challenge_2/python/Atakyn/c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/Atakyn/c2.py -------------------------------------------------------------------------------- /challenge_2/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_2/python/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_2/python/DTCitron/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/DTCitron/src/main.py -------------------------------------------------------------------------------- /challenge_2/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_2/python/Loran425/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/Loran425/src/main.py -------------------------------------------------------------------------------- /challenge_2/python/OkraArmband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/OkraArmband/README.md -------------------------------------------------------------------------------- /challenge_2/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_2/python/alexbotello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/alexbotello/README.md -------------------------------------------------------------------------------- /challenge_2/python/alexbotello/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/alexbotello/main.py -------------------------------------------------------------------------------- /challenge_2/python/bryantpq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/bryantpq/README.md -------------------------------------------------------------------------------- /challenge_2/python/cactus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/cactus/README.md -------------------------------------------------------------------------------- /challenge_2/python/dfdx2/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/dfdx2/count.py -------------------------------------------------------------------------------- /challenge_2/python/flickdm/Readme.md: -------------------------------------------------------------------------------- 1 | #Challenge_2 2 | 3 | 4 | The code is mostly self documenting 5 | -------------------------------------------------------------------------------- /challenge_2/python/flickdm/challenge2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/flickdm/challenge2.py -------------------------------------------------------------------------------- /challenge_2/python/flickdm/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/flickdm/test.py -------------------------------------------------------------------------------- /challenge_2/python/kar-moore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/kar-moore/README.md -------------------------------------------------------------------------------- /challenge_2/python/lepmets/README.md: -------------------------------------------------------------------------------- 1 | # Challenge #2 in Python 2 | -------------------------------------------------------------------------------- /challenge_2/python/lex32pem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/lex32pem/Readme.md -------------------------------------------------------------------------------- /challenge_2/python/mical/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/mical/main.py -------------------------------------------------------------------------------- /challenge_2/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_2/python/mindm/src/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/mindm/src/single.py -------------------------------------------------------------------------------- /challenge_2/python/mrkwll/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/mrkwll/solution.py -------------------------------------------------------------------------------- /challenge_2/python/nebi/README.md: -------------------------------------------------------------------------------- 1 | ## Challenge 2 2 | 3 | More info in the code 4 | -------------------------------------------------------------------------------- /challenge_2/python/ning/challenge_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/ning/challenge_2.py -------------------------------------------------------------------------------- /challenge_2/python/polar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/polar/README.md -------------------------------------------------------------------------------- /challenge_2/python/psonghi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/psonghi/README.md -------------------------------------------------------------------------------- /challenge_2/python/returnlove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/returnlove/README.md -------------------------------------------------------------------------------- /challenge_2/python/sarcodian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/sarcodian/README.md -------------------------------------------------------------------------------- /challenge_2/python/shaowen/single_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/shaowen/single_n.py -------------------------------------------------------------------------------- /challenge_2/python/slandau/README.md: -------------------------------------------------------------------------------- 1 | Challenge 2, finding a single digit by Steven Landau 2 | -------------------------------------------------------------------------------- /challenge_2/python/slandau/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/slandau/single.py -------------------------------------------------------------------------------- /challenge_2/python/slansford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/slansford/README.md -------------------------------------------------------------------------------- /challenge_2/python/sysek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/sysek/README.md -------------------------------------------------------------------------------- /challenge_2/python/system123/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenge_2/python/tvanderwal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/tvanderwal/README.md -------------------------------------------------------------------------------- /challenge_2/python/ukirderohit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/ukirderohit/README.md -------------------------------------------------------------------------------- /challenge_2/python/ukirderohit/c2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/ukirderohit/c2.py -------------------------------------------------------------------------------- /challenge_2/python/walkingluo/README.md: -------------------------------------------------------------------------------- 1 | ## Challenge_2 2 | 3 | - single number -------------------------------------------------------------------------------- /challenge_2/python/whiterd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/whiterd/README.md -------------------------------------------------------------------------------- /challenge_2/python/zooks97/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/python/zooks97/README.md -------------------------------------------------------------------------------- /challenge_2/r/aev1tas/uniquevalue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/r/aev1tas/uniquevalue.R -------------------------------------------------------------------------------- /challenge_2/r/henriquefb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/r/henriquefb/README.md -------------------------------------------------------------------------------- /challenge_2/r/henriquefb/challenge2hfb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/r/henriquefb/challenge2hfb.R -------------------------------------------------------------------------------- /challenge_2/ruby/selectivealso/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/ruby/selectivealso/readme.md -------------------------------------------------------------------------------- /challenge_2/rust/deg4uss3r/challenge_2/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "challenge_2" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_2/rust/josephpd3/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "josephpd3" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_2/rust/josephpd3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/josephpd3/Cargo.toml -------------------------------------------------------------------------------- /challenge_2/rust/josephpd3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/josephpd3/README.md -------------------------------------------------------------------------------- /challenge_2/rust/josephpd3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/josephpd3/src/lib.rs -------------------------------------------------------------------------------- /challenge_2/rust/makernaren/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "makernaren" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_2/rust/makernaren/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/makernaren/Cargo.toml -------------------------------------------------------------------------------- /challenge_2/rust/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/makernaren/README.md -------------------------------------------------------------------------------- /challenge_2/rust/makernaren/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/makernaren/src/main.rs -------------------------------------------------------------------------------- /challenge_2/rust/myrrlyn/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "myrrlyn" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_2/rust/myrrlyn/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/myrrlyn/Cargo.toml -------------------------------------------------------------------------------- /challenge_2/rust/myrrlyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/myrrlyn/README.md -------------------------------------------------------------------------------- /challenge_2/rust/myrrlyn/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/myrrlyn/src/lib.rs -------------------------------------------------------------------------------- /challenge_2/rust/myrrlyn/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/rust/myrrlyn/src/main.rs -------------------------------------------------------------------------------- /challenge_2/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_2/testfiles/o1: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /challenge_2/testfiles/o2: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /challenge_2/testfiles/o3: -------------------------------------------------------------------------------- 1 | 151 2 | -------------------------------------------------------------------------------- /challenge_2/testfiles/o4: -------------------------------------------------------------------------------- 1 | 151 2 | -------------------------------------------------------------------------------- /challenge_2/testfiles/o5: -------------------------------------------------------------------------------- 1 | 151 2 | -------------------------------------------------------------------------------- /challenge_2/testfiles/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/testfiles/t1 -------------------------------------------------------------------------------- /challenge_2/testfiles/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/testfiles/t2 -------------------------------------------------------------------------------- /challenge_2/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/testfiles/t3 -------------------------------------------------------------------------------- /challenge_2/testfiles/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/testfiles/t4 -------------------------------------------------------------------------------- /challenge_2/testfiles/t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_2/testfiles/t5 -------------------------------------------------------------------------------- /challenge_3/C/karanchawla/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/C/karanchawla/src/README.md -------------------------------------------------------------------------------- /challenge_3/C/xor-eax-eax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/C/xor-eax-eax/README.md -------------------------------------------------------------------------------- /challenge_3/C/xor-eax-eax/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/C/xor-eax-eax/src/main.c -------------------------------------------------------------------------------- /challenge_3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/README.md -------------------------------------------------------------------------------- /challenge_3/cpp/blakebarnes00/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/cpp/blakebarnes00/Makefile -------------------------------------------------------------------------------- /challenge_3/cpp/dewie102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/cpp/dewie102/README.md -------------------------------------------------------------------------------- /challenge_3/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_3/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_3/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_3/cpp/rbrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/cpp/rbrt/README.md -------------------------------------------------------------------------------- /challenge_3/elixir/joegotflow83/majority_element/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /challenge_3/go/erocs/majority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/go/erocs/majority.go -------------------------------------------------------------------------------- /challenge_3/go/makernaren/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/go/makernaren/README.md -------------------------------------------------------------------------------- /challenge_3/go/natdm/majority.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/go/natdm/majority.go -------------------------------------------------------------------------------- /challenge_3/go/natdm/majority_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/go/natdm/majority_test.go -------------------------------------------------------------------------------- /challenge_3/go/rchicoli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/go/rchicoli/README.md -------------------------------------------------------------------------------- /challenge_3/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_3/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_3/javascript/rawphs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/javascript/rawphs/README.md -------------------------------------------------------------------------------- /challenge_3/julia/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/julia/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_3/python/Atakyn/c3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/Atakyn/c3.py -------------------------------------------------------------------------------- /challenge_3/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_3/python/DTCitron/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/DTCitron/README.md -------------------------------------------------------------------------------- /challenge_3/python/DTCitron/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/DTCitron/src/main.py -------------------------------------------------------------------------------- /challenge_3/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_3/python/Loran425/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/Loran425/src/main.py -------------------------------------------------------------------------------- /challenge_3/python/OkraArmband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/OkraArmband/README.md -------------------------------------------------------------------------------- /challenge_3/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_3/python/alexbotello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/alexbotello/README.md -------------------------------------------------------------------------------- /challenge_3/python/alexbotello/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/alexbotello/main.py -------------------------------------------------------------------------------- /challenge_3/python/bryantpq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/bryantpq/README.md -------------------------------------------------------------------------------- /challenge_3/python/dfdx2/challenge_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/dfdx2/challenge_3.py -------------------------------------------------------------------------------- /challenge_3/python/kar-moore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/kar-moore/README.md -------------------------------------------------------------------------------- /challenge_3/python/lepmets/README.md: -------------------------------------------------------------------------------- 1 | # Challenge #3 in Python 2 | -------------------------------------------------------------------------------- /challenge_3/python/lex32pem/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/lex32pem/readme.md -------------------------------------------------------------------------------- /challenge_3/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_3/python/mindm/src/majority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/mindm/src/majority.py -------------------------------------------------------------------------------- /challenge_3/python/ning/challenge_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/ning/challenge_3.py -------------------------------------------------------------------------------- /challenge_3/python/returnlove/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/returnlove/README.md -------------------------------------------------------------------------------- /challenge_3/python/sarcodian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/sarcodian/README.md -------------------------------------------------------------------------------- /challenge_3/python/slandau/README.md: -------------------------------------------------------------------------------- 1 | Challange 3 in Python by Steven Landau 2 | -------------------------------------------------------------------------------- /challenge_3/python/slandau/majority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/slandau/majority.py -------------------------------------------------------------------------------- /challenge_3/python/slansford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/slansford/README.md -------------------------------------------------------------------------------- /challenge_3/python/sysek/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/sysek/README.md -------------------------------------------------------------------------------- /challenge_3/python/sysek/src/majority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/sysek/src/majority.py -------------------------------------------------------------------------------- /challenge_3/python/system123/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/system123/README.md -------------------------------------------------------------------------------- /challenge_3/python/tvanderwal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/tvanderwal/README.md -------------------------------------------------------------------------------- /challenge_3/python/whiterd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/whiterd/README.md -------------------------------------------------------------------------------- /challenge_3/python/wost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/wost/README.md -------------------------------------------------------------------------------- /challenge_3/python/wost/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/python/wost/main.py -------------------------------------------------------------------------------- /challenge_3/r/aev1tas/MajorityElement.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/r/aev1tas/MajorityElement.R -------------------------------------------------------------------------------- /challenge_3/r/henriquefb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/r/henriquefb/README.md -------------------------------------------------------------------------------- /challenge_3/r/henriquefb/challenge3hfb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/r/henriquefb/challenge3hfb.R -------------------------------------------------------------------------------- /challenge_3/ruby/selectivealso/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/ruby/selectivealso/readme.md -------------------------------------------------------------------------------- /challenge_3/rust/deg4uss3r/challenge_3/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "challenge_3" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_3/rust/myrrlyn/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "myrrlyn" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_3/rust/myrrlyn/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/rust/myrrlyn/Cargo.toml -------------------------------------------------------------------------------- /challenge_3/rust/myrrlyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/rust/myrrlyn/README.md -------------------------------------------------------------------------------- /challenge_3/rust/myrrlyn/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/rust/myrrlyn/src/lib.rs -------------------------------------------------------------------------------- /challenge_3/rust/myrrlyn/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/rust/myrrlyn/src/main.rs -------------------------------------------------------------------------------- /challenge_3/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_3/testfiles/o1: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /challenge_3/testfiles/o2: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /challenge_3/testfiles/o3: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /challenge_3/testfiles/o4: -------------------------------------------------------------------------------- 1 | 141 2 | -------------------------------------------------------------------------------- /challenge_3/testfiles/o5: -------------------------------------------------------------------------------- 1 | 29351 2 | -------------------------------------------------------------------------------- /challenge_3/testfiles/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/testfiles/t1 -------------------------------------------------------------------------------- /challenge_3/testfiles/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/testfiles/t2 -------------------------------------------------------------------------------- /challenge_3/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/testfiles/t3 -------------------------------------------------------------------------------- /challenge_3/testfiles/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/testfiles/t4 -------------------------------------------------------------------------------- /challenge_3/testfiles/t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_3/testfiles/t5 -------------------------------------------------------------------------------- /challenge_4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/README.md -------------------------------------------------------------------------------- /challenge_4/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_4/c/karanchawla/challenge_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/c/karanchawla/challenge_4.c -------------------------------------------------------------------------------- /challenge_4/c/kokimame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/c/kokimame/README.md -------------------------------------------------------------------------------- /challenge_4/c/kokimame/invertTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/c/kokimame/invertTree.c -------------------------------------------------------------------------------- /challenge_4/cpp/dewie102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/cpp/dewie102/README.md -------------------------------------------------------------------------------- /challenge_4/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_4/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_4/cpp/manuel/src/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/cpp/manuel/src/input -------------------------------------------------------------------------------- /challenge_4/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_4/go/erocs/invert_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/go/erocs/invert_tree.go -------------------------------------------------------------------------------- /challenge_4/go/natdm/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/go/natdm/tree.go -------------------------------------------------------------------------------- /challenge_4/go/natdm/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/go/natdm/tree_test.go -------------------------------------------------------------------------------- /challenge_4/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_4/java/jdfurlan/src/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/java/jdfurlan/src/Node.java -------------------------------------------------------------------------------- /challenge_4/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_4/python/Atakyn/c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/Atakyn/c4.py -------------------------------------------------------------------------------- /challenge_4/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_4/python/CindyB/src/Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/CindyB/src/Tree.py -------------------------------------------------------------------------------- /challenge_4/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_4/python/Loran425/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/Loran425/src/main.py -------------------------------------------------------------------------------- /challenge_4/python/Mical/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/Mical/README.md -------------------------------------------------------------------------------- /challenge_4/python/Mical/srs/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/Mical/srs/main.py -------------------------------------------------------------------------------- /challenge_4/python/OkraArmband/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/OkraArmband/README.md -------------------------------------------------------------------------------- /challenge_4/python/OkraArmband/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/OkraArmband/tree.jpg -------------------------------------------------------------------------------- /challenge_4/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_4/python/bryantpq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/bryantpq/README.md -------------------------------------------------------------------------------- /challenge_4/python/bryantpq/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/bryantpq/tree.py -------------------------------------------------------------------------------- /challenge_4/python/dfdx2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/dfdx2/README.md -------------------------------------------------------------------------------- /challenge_4/python/dfdx2/binary1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/dfdx2/binary1.py -------------------------------------------------------------------------------- /challenge_4/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_4/python/mindm/src/btree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/mindm/src/btree.py -------------------------------------------------------------------------------- /challenge_4/python/ning/challenge_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/ning/challenge_4.py -------------------------------------------------------------------------------- /challenge_4/python/sarcodian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/sarcodian/README.md -------------------------------------------------------------------------------- /challenge_4/python/shaowen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/shaowen/README.md -------------------------------------------------------------------------------- /challenge_4/python/slandau/README.md: -------------------------------------------------------------------------------- 1 | Challenge 4 in Python by Steven Landau 2 | -------------------------------------------------------------------------------- /challenge_4/python/slansford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/slansford/README.md -------------------------------------------------------------------------------- /challenge_4/python/system123/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/system123/README.md -------------------------------------------------------------------------------- /challenge_4/python/tvanderwal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/tvanderwal/README.md -------------------------------------------------------------------------------- /challenge_4/python/whiterd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/whiterd/README.md -------------------------------------------------------------------------------- /challenge_4/python/wost/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/wost/Node.py -------------------------------------------------------------------------------- /challenge_4/python/wost/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/python/wost/main.py -------------------------------------------------------------------------------- /challenge_4/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_4/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/tree.jpg -------------------------------------------------------------------------------- /challenge_4/treeReversed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/treeReversed.jpg -------------------------------------------------------------------------------- /challenge_4/x86/x95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/x86/x95/README.md -------------------------------------------------------------------------------- /challenge_4/x86/x95/src/challenge4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/x86/x95/src/challenge4.c -------------------------------------------------------------------------------- /challenge_4/x86/x95/src/invertTree.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_4/x86/x95/src/invertTree.s -------------------------------------------------------------------------------- /challenge_5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/README.md -------------------------------------------------------------------------------- /challenge_5/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_5/cpp/dewie102/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/cpp/dewie102/README.md -------------------------------------------------------------------------------- /challenge_5/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_5/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_5/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_5/cpp/rbrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/cpp/rbrt/README.md -------------------------------------------------------------------------------- /challenge_5/elixir/joegotflow83/find_difference/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | -------------------------------------------------------------------------------- /challenge_5/go/natdm/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/go/natdm/diff.go -------------------------------------------------------------------------------- /challenge_5/go/natdm/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/go/natdm/diff_test.go -------------------------------------------------------------------------------- /challenge_5/java/hkl0902/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/java/hkl0902/Makefile -------------------------------------------------------------------------------- /challenge_5/java/hkl0902/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/java/hkl0902/README.md -------------------------------------------------------------------------------- /challenge_5/java/hkl0902/UnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/java/hkl0902/UnitTest.java -------------------------------------------------------------------------------- /challenge_5/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_5/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_5/python/Atakyn/c5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/Atakyn/c5.py -------------------------------------------------------------------------------- /challenge_5/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_5/python/CindyB/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/CindyB/src/test.py -------------------------------------------------------------------------------- /challenge_5/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_5/python/Loran425/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/Loran425/src/test.py -------------------------------------------------------------------------------- /challenge_5/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_5/python/ajschrier/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/ajschrier/test.py -------------------------------------------------------------------------------- /challenge_5/python/alexbotello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/alexbotello/README.md -------------------------------------------------------------------------------- /challenge_5/python/alexbotello/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/alexbotello/test.py -------------------------------------------------------------------------------- /challenge_5/python/bryantpq/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/bryantpq/test.py -------------------------------------------------------------------------------- /challenge_5/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_5/python/mindm/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/mindm/src/test.py -------------------------------------------------------------------------------- /challenge_5/python/mjuiuc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/mjuiuc/test.py -------------------------------------------------------------------------------- /challenge_5/python/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/ning/README.md -------------------------------------------------------------------------------- /challenge_5/python/sarcodian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/sarcodian/README.md -------------------------------------------------------------------------------- /challenge_5/python/shaowen/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/shaowen/test.py -------------------------------------------------------------------------------- /challenge_5/python/slandau/README.md: -------------------------------------------------------------------------------- 1 | Challenge 5 in Python3 by Steven Landau 2 | -------------------------------------------------------------------------------- /challenge_5/python/slansford/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/slansford/README.md -------------------------------------------------------------------------------- /challenge_5/python/slansford/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/slansford/src/test.py -------------------------------------------------------------------------------- /challenge_5/python/system123/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/system123/test.py -------------------------------------------------------------------------------- /challenge_5/python/tvanderwal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/tvanderwal/README.md -------------------------------------------------------------------------------- /challenge_5/python/wost/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.py~ 3 | -------------------------------------------------------------------------------- /challenge_5/python/wost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/wost/README.md -------------------------------------------------------------------------------- /challenge_5/python/wost/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/python/wost/test.py -------------------------------------------------------------------------------- /challenge_5/ruby/selectivealso/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/ruby/selectivealso/readme.md -------------------------------------------------------------------------------- /challenge_5/rust/deg4uss3r/challenge_5/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "challenge_5" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_5/rust/deg4uss3r/challenge_5/tests/testfiles/o1: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /challenge_5/rust/deg4uss3r/challenge_5/tests/testfiles/o2: -------------------------------------------------------------------------------- 1 | t 2 | -------------------------------------------------------------------------------- /challenge_5/rust/deg4uss3r/challenge_5/tests/testfiles/o3: -------------------------------------------------------------------------------- 1 | p 2 | -------------------------------------------------------------------------------- /challenge_5/rust/deg4uss3r/challenge_5/tests/testfiles/t1: -------------------------------------------------------------------------------- 1 | abcd 2 | abcde 3 | -------------------------------------------------------------------------------- /challenge_5/rust/deg4uss3r/challenge_5/tests/testfiles/t2: -------------------------------------------------------------------------------- 1 | alskdjfhg 2 | laksjdhfgt 3 | -------------------------------------------------------------------------------- /challenge_5/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_5/testfiles/o1: -------------------------------------------------------------------------------- 1 | e 2 | -------------------------------------------------------------------------------- /challenge_5/testfiles/o2: -------------------------------------------------------------------------------- 1 | t 2 | -------------------------------------------------------------------------------- /challenge_5/testfiles/o3: -------------------------------------------------------------------------------- 1 | p 2 | -------------------------------------------------------------------------------- /challenge_5/testfiles/t1: -------------------------------------------------------------------------------- 1 | abcd 2 | abcde 3 | -------------------------------------------------------------------------------- /challenge_5/testfiles/t2: -------------------------------------------------------------------------------- 1 | alskdjfhg 2 | laksjdhfgt 3 | -------------------------------------------------------------------------------- /challenge_5/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_5/testfiles/t3 -------------------------------------------------------------------------------- /challenge_6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/README.md -------------------------------------------------------------------------------- /challenge_6/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_6/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_6/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_6/cpp/manuel/src/ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/cpp/manuel/src/ranges.cpp -------------------------------------------------------------------------------- /challenge_6/cpp/manuel/src/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/cpp/manuel/src/tools.cpp -------------------------------------------------------------------------------- /challenge_6/cpp/rbrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/cpp/rbrt/README.md -------------------------------------------------------------------------------- /challenge_6/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_6/java/zmiller91/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/java/zmiller91/README.md -------------------------------------------------------------------------------- /challenge_6/javascript/Zirhc86/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/javascript/Zirhc86/readme.md -------------------------------------------------------------------------------- /challenge_6/python/Atakyn/c6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/Atakyn/c6.py -------------------------------------------------------------------------------- /challenge_6/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_6/python/CindyB/src/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/CindyB/src/tests.py -------------------------------------------------------------------------------- /challenge_6/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_6/python/ajschrier/IntRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/ajschrier/IntRange.py -------------------------------------------------------------------------------- /challenge_6/python/ajschrier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/ajschrier/README.md -------------------------------------------------------------------------------- /challenge_6/python/alexbotello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/alexbotello/README.md -------------------------------------------------------------------------------- /challenge_6/python/bryantpq/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/bryantpq/ranges.py -------------------------------------------------------------------------------- /challenge_6/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_6/python/mindm/src/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/mindm/src/ranges.py -------------------------------------------------------------------------------- /challenge_6/python/mindm/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/mindm/src/test.py -------------------------------------------------------------------------------- /challenge_6/python/mjuiuc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/mjuiuc/README.md -------------------------------------------------------------------------------- /challenge_6/python/mjuiuc/Solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/mjuiuc/Solution.py -------------------------------------------------------------------------------- /challenge_6/python/mjuiuc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/mjuiuc/test.py -------------------------------------------------------------------------------- /challenge_6/python/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/ning/README.md -------------------------------------------------------------------------------- /challenge_6/python/ning/challenge_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/ning/challenge_6.py -------------------------------------------------------------------------------- /challenge_6/python/ning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/ning/test.py -------------------------------------------------------------------------------- /challenge_6/python/shaowen/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/shaowen/ranges.py -------------------------------------------------------------------------------- /challenge_6/python/shaowen/u_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/shaowen/u_test.py -------------------------------------------------------------------------------- /challenge_6/python/slandau3/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/slandau3/ranges.py -------------------------------------------------------------------------------- /challenge_6/python/slandau3/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/slandau3/tests.py -------------------------------------------------------------------------------- /challenge_6/python/system123/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/python/system123/tests.py -------------------------------------------------------------------------------- /challenge_6/ruby/selectivealso/ranges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/ruby/selectivealso/ranges.rb -------------------------------------------------------------------------------- /challenge_6/rust/deg4uss3r/challenge_6/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "challenge_6" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_6/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_6/testfiles/o1: -------------------------------------------------------------------------------- 1 | 1->5 2 | 8->10 3 | -------------------------------------------------------------------------------- /challenge_6/testfiles/o2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenge_6/testfiles/o3: -------------------------------------------------------------------------------- 1 | 1->2 2 | -------------------------------------------------------------------------------- /challenge_6/testfiles/o4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /challenge_6/testfiles/o5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/testfiles/o5 -------------------------------------------------------------------------------- /challenge_6/testfiles/t1: -------------------------------------------------------------------------------- 1 | 1,2,3,4,5,8,9,10 2 | -------------------------------------------------------------------------------- /challenge_6/testfiles/t2: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /challenge_6/testfiles/t3: -------------------------------------------------------------------------------- 1 | 1,2 2 | -------------------------------------------------------------------------------- /challenge_6/testfiles/t4: -------------------------------------------------------------------------------- 1 | -2,0,2 2 | -------------------------------------------------------------------------------- /challenge_6/testfiles/t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_6/testfiles/t5 -------------------------------------------------------------------------------- /challenge_7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/README.md -------------------------------------------------------------------------------- /challenge_7/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_7/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_7/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_7/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_7/cpp/manuel/src/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/cpp/manuel/src/tools.cpp -------------------------------------------------------------------------------- /challenge_7/find_missing_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/find_missing_num.py -------------------------------------------------------------------------------- /challenge_7/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_7/java/zmiller91/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/java/zmiller91/README.md -------------------------------------------------------------------------------- /challenge_7/postscript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/postscript/README.md -------------------------------------------------------------------------------- /challenge_7/python/Atakyn/c7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/Atakyn/c7.py -------------------------------------------------------------------------------- /challenge_7/python/CindyB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/CindyB/README.md -------------------------------------------------------------------------------- /challenge_7/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_7/python/aemc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/aemc/README.md -------------------------------------------------------------------------------- /challenge_7/python/aemc/src/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/aemc/src/tests.py -------------------------------------------------------------------------------- /challenge_7/python/aemc/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/aemc/tests.py -------------------------------------------------------------------------------- /challenge_7/python/bryantpq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/bryantpq/README.md -------------------------------------------------------------------------------- /challenge_7/python/mindm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/mindm/README.md -------------------------------------------------------------------------------- /challenge_7/python/mindm/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/mindm/src/test.py -------------------------------------------------------------------------------- /challenge_7/python/mjuiuc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/mjuiuc/README.md -------------------------------------------------------------------------------- /challenge_7/python/mjuiuc/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/mjuiuc/solution.py -------------------------------------------------------------------------------- /challenge_7/python/mjuiuc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/mjuiuc/test.py -------------------------------------------------------------------------------- /challenge_7/python/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/ning/README.md -------------------------------------------------------------------------------- /challenge_7/python/ning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/ning/test.py -------------------------------------------------------------------------------- /challenge_7/python/sarcodian/READ.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/sarcodian/READ.me -------------------------------------------------------------------------------- /challenge_7/python/slandau3/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/slandau3/tests.py -------------------------------------------------------------------------------- /challenge_7/python/system123/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/python/system123/tests.py -------------------------------------------------------------------------------- /challenge_7/rust/josephpd3/Cargo.lock: -------------------------------------------------------------------------------- 1 | [root] 2 | name = "josephpd3" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /challenge_7/rust/josephpd3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/rust/josephpd3/Cargo.toml -------------------------------------------------------------------------------- /challenge_7/rust/josephpd3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/rust/josephpd3/README.md -------------------------------------------------------------------------------- /challenge_7/rust/josephpd3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/rust/josephpd3/src/lib.rs -------------------------------------------------------------------------------- /challenge_7/scala/ndsmith3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/scala/ndsmith3/README.md -------------------------------------------------------------------------------- /challenge_7/testfiles/o1: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /challenge_7/testfiles/o2: -------------------------------------------------------------------------------- 1 | 102 2 | -------------------------------------------------------------------------------- /challenge_7/testfiles/o3: -------------------------------------------------------------------------------- 1 | 339 2 | -------------------------------------------------------------------------------- /challenge_7/testfiles/o4: -------------------------------------------------------------------------------- 1 | 730 2 | -------------------------------------------------------------------------------- /challenge_7/testfiles/o5: -------------------------------------------------------------------------------- 1 | 445 2 | -------------------------------------------------------------------------------- /challenge_7/testfiles/t1: -------------------------------------------------------------------------------- 1 | 1,3,4,0 2 | -------------------------------------------------------------------------------- /challenge_7/testfiles/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/testfiles/t2 -------------------------------------------------------------------------------- /challenge_7/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/testfiles/t3 -------------------------------------------------------------------------------- /challenge_7/testfiles/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/testfiles/t4 -------------------------------------------------------------------------------- /challenge_7/testfiles/t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/testfiles/t5 -------------------------------------------------------------------------------- /challenge_7/x86/x95/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_7/x86/x95/README.md -------------------------------------------------------------------------------- /challenge_8/ArbitLinked-List12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/ArbitLinked-List12.gif -------------------------------------------------------------------------------- /challenge_8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/README.md -------------------------------------------------------------------------------- /challenge_8/c/karanchawla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/c/karanchawla/README.md -------------------------------------------------------------------------------- /challenge_8/java/zmiller91/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/java/zmiller91/README.md -------------------------------------------------------------------------------- /challenge_8/linkedlist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/linkedlist.jpg -------------------------------------------------------------------------------- /challenge_8/python/Loran425/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/Loran425/README.md -------------------------------------------------------------------------------- /challenge_8/python/mjuiuc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/mjuiuc/README.md -------------------------------------------------------------------------------- /challenge_8/python/mjuiuc/listNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/mjuiuc/listNode.py -------------------------------------------------------------------------------- /challenge_8/python/mjuiuc/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/mjuiuc/solution.py -------------------------------------------------------------------------------- /challenge_8/python/mjuiuc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/mjuiuc/test.py -------------------------------------------------------------------------------- /challenge_8/python/wost/LinkedList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/wost/LinkedList.py -------------------------------------------------------------------------------- /challenge_8/python/wost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/wost/README.md -------------------------------------------------------------------------------- /challenge_8/python/wost/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_8/python/wost/main.py -------------------------------------------------------------------------------- /challenge_9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/README.md -------------------------------------------------------------------------------- /challenge_9/cpp/manuel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/cpp/manuel/Makefile -------------------------------------------------------------------------------- /challenge_9/cpp/manuel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/cpp/manuel/README.md -------------------------------------------------------------------------------- /challenge_9/cpp/manuel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/cpp/manuel/src/main.cpp -------------------------------------------------------------------------------- /challenge_9/cpp/manuel/src/tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/cpp/manuel/src/tools.cpp -------------------------------------------------------------------------------- /challenge_9/java/jdfurlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/java/jdfurlan/README.md -------------------------------------------------------------------------------- /challenge_9/java/zmiller91/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/java/zmiller91/README.md -------------------------------------------------------------------------------- /challenge_9/python/kar-moore/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/kar-moore/tests.py -------------------------------------------------------------------------------- /challenge_9/python/mjuiuc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/mjuiuc/README.md -------------------------------------------------------------------------------- /challenge_9/python/mjuiuc/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/mjuiuc/solution.py -------------------------------------------------------------------------------- /challenge_9/python/mjuiuc/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/mjuiuc/test.py -------------------------------------------------------------------------------- /challenge_9/python/ning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/ning/README.md -------------------------------------------------------------------------------- /challenge_9/python/ning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/ning/test.py -------------------------------------------------------------------------------- /challenge_9/python/sarcodian/READ.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/sarcodian/READ.me -------------------------------------------------------------------------------- /challenge_9/python/shaowen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/shaowen/readme.md -------------------------------------------------------------------------------- /challenge_9/python/slandau3/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/slandau3/square.py -------------------------------------------------------------------------------- /challenge_9/python/slandau3/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/slandau3/test.py -------------------------------------------------------------------------------- /challenge_9/python/system123/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/system123/tests.py -------------------------------------------------------------------------------- /challenge_9/python/wost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/wost/README.md -------------------------------------------------------------------------------- /challenge_9/python/wost/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/python/wost/src/main.py -------------------------------------------------------------------------------- /challenge_9/rust/josephpd3/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/rust/josephpd3/Cargo.lock -------------------------------------------------------------------------------- /challenge_9/rust/josephpd3/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/rust/josephpd3/Cargo.toml -------------------------------------------------------------------------------- /challenge_9/rust/josephpd3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/rust/josephpd3/README.md -------------------------------------------------------------------------------- /challenge_9/rust/josephpd3/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/rust/josephpd3/src/lib.rs -------------------------------------------------------------------------------- /challenge_9/testfiles/o1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/o1 -------------------------------------------------------------------------------- /challenge_9/testfiles/o2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/o2 -------------------------------------------------------------------------------- /challenge_9/testfiles/o3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/o3 -------------------------------------------------------------------------------- /challenge_9/testfiles/o4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/o4 -------------------------------------------------------------------------------- /challenge_9/testfiles/o5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/o5 -------------------------------------------------------------------------------- /challenge_9/testfiles/o6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/o6 -------------------------------------------------------------------------------- /challenge_9/testfiles/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/t1 -------------------------------------------------------------------------------- /challenge_9/testfiles/t2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/t2 -------------------------------------------------------------------------------- /challenge_9/testfiles/t3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/t3 -------------------------------------------------------------------------------- /challenge_9/testfiles/t4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/t4 -------------------------------------------------------------------------------- /challenge_9/testfiles/t5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/t5 -------------------------------------------------------------------------------- /challenge_9/testfiles/t6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YearOfProgramming/2017Challenges/HEAD/challenge_9/testfiles/t6 --------------------------------------------------------------------------------