Commit Graph

1167 Commits

Author SHA1 Message Date
RibTips 501deb035c Fixed game termination bug
Fixed issue where the game wouldn't terminate properly if the computer goes first.
2022-01-07 10:59:03 -05:00
RibTips 8c8a00df0f 89_TicTacToe2 in perl 2022-01-07 02:58:35 -05:00
RibTips 6dda7ce25a 89_TicTacToe in perl 2022-01-07 02:46:39 -05:00
Jeff Atwood a75c251f56 Merge pull request #441 from havoclad/main
Fix enemy fire
2022-01-06 20:19:07 -08:00
Pat Ludwig f10cc5cddd Merge branch 'coding-horror:main' into main 2022-01-06 22:11:27 -06:00
Pat Ludwig 03a18e473a Fix enemy fire
Choice 3, both should apply both $double_fire and $hit_rate
2022-01-06 22:09:04 -06:00
Jeff Atwood 950cf923ac Merge pull request #440 from manminusone/62_Mugwump
Mugwump implementation in Perl
2022-01-06 19:40:04 -08:00
Jeff Atwood 15c73431e0 Merge pull request #439 from havoclad/main
Fix misspelling
2022-01-06 19:28:14 -08:00
Jeff Atwood b9419e92dd Merge pull request #438 from polettix/12-bombsaway-perl
Add 12_Bombs_Away in Perl
2022-01-06 19:27:36 -08:00
James Allenspach dbc02ecf61 typo 2022-01-06 20:25:06 -06:00
James Allenspach c235806957 Initial commit 2022-01-06 20:23:53 -06:00
Pat Ludwig 5b0d5e1221 Fix misspelling
General code cleanup, including
* Address code indendation
* Condense print statments
* Add spaces before = signs
* Add spaces around operators
* Simplify a few things
* Use full variable names instead of single letters
2022-01-06 20:14:39 -06:00
Flavio Poletti dd7def55f3 Add 12_Bombs_Away in Perl 2022-01-07 03:11:52 +01:00
Jeff Atwood 03849b3f72 Merge pull request #437 from havoclad/main
Fix issues with spacing in intro section
2022-01-06 15:34:36 -08:00
Pat Ludwig 168a8fccae Merge branch 'coding-horror:main' into main 2022-01-06 17:19:42 -06:00
Pat Ludwig d2bf2e2e3b Fix issues with spacing in intro section
And bug with justification of the first two lines
2022-01-06 17:17:39 -06:00
Jeff Atwood 11ec204970 Merge pull request #436 from LittleTealeaf/30_Cube_Java
30 Cube in Java
2022-01-06 13:44:19 -08:00
Thomas Kwashnak d2495a55aa Added Comments 2022-01-06 16:12:04 -05:00
Thomas Kwashnak fe6cb06d6f Added Comments 2022-01-06 16:11:12 -05:00
Thomas Kwashnak 28b94b5567 Game now works 2022-01-06 16:04:03 -05:00
Thomas Kwashnak 33dbe7e92d Started work on the play cycle 2022-01-06 15:35:24 -05:00
Jeff Atwood cbd17519df Merge pull request #435 from polettix/04-awari-perl
Add Perl for 04_Awari
2022-01-06 11:43:45 -08:00
Jeff Atwood 6a52ecb0c9 Merge pull request #434 from LittleTealeaf/48_High_IQ_Java
48 High IQ in Java
2022-01-06 11:43:21 -08:00
Flavio Poletti 4d88281a17 Add Perl for 04_Awari 2022-01-06 20:37:25 +01:00
Thomas Kwashnak 6ae9fbcd36 Initial Commit
Added Instructions, Random mine placement, and the general layout
2022-01-06 14:22:28 -05:00
Thomas Kwashnak 60b84070c9 Added Header 2022-01-06 13:40:28 -05:00
Thomas Kwashnak 110b77fccd Cleanup 2022-01-06 13:35:37 -05:00
Jeff Atwood 3fb17ba4d7 Merge pull request #433 from qequ/main
Added script to write a markdown TODO list of implementations for games
2022-01-06 10:28:49 -08:00
Thomas Kwashnak 3d4f5c685a Added Instructions 2022-01-06 13:22:56 -05:00
Thomas Kwashnak 45345d593d Reformatted Code 2022-01-06 13:16:55 -05:00
Thomas Kwashnak 18016b59ed Typo Fixes 2022-01-06 13:15:48 -05:00
Jeff Atwood c914df9274 Merge pull request #431 from ribtips/main
11_Bombardment in Perl
2022-01-06 09:28:01 -08:00
Jeff Atwood d71603cebd Merge pull request #432 from patimen/main
Switch to readln
2022-01-06 09:27:23 -08:00
Thomas Kwashnak 048b9c31a2 Added re-playability 2022-01-06 11:38:17 -05:00
Alvaro Frias Garay 08b299b3bb Sorted table 2022-01-06 13:13:04 -03:00
Alvaro Frias Garay f599702197 Added script to write a markdown TODO list of implementations for games 2022-01-06 13:03:31 -03:00
Thomas Kwashnak 821ae4befe Moving re-playability to other script 2022-01-06 10:02:44 -05:00
Thomas Kwashnak e19a4aef19 Added leaving comment 2022-01-06 09:46:58 -05:00
Thomas Kwashnak 31dec71063 Simplified isGameFinished
Unsure if I should simplify further
2022-01-06 09:45:04 -05:00
Thomas Kwashnak aaa8d61860 Implemented GameFinished
does it work? Unsure...
2022-01-06 09:34:20 -05:00
Thomas Kwashnak 056c8cd4d9 Update HighIQ.java 2022-01-06 09:06:15 -05:00
Thomas Kwashnak 918b42149e Implemented Possible printBoard
Doing this through web browser, so unsure if this will work or compile.. Will check later
2022-01-06 08:52:12 -05:00
Thomas Kwashnak f8cc93aaea added getChar method 2022-01-06 08:50:17 -05:00
John Long 71c7541905 Switch to readln
readln throws an exception when a file hits EOF, wheras readLine returns null. That puts us in an infinite loop if we hit EOF.
2022-01-05 23:22:46 -08:00
RibTips aed1f65c76 11_Bombardment in Perl
A version of bombardment written in perl
2022-01-06 01:24:44 -05:00
Jeff Atwood a58455a452 Merge pull request #430 from acoffman/36-flip-flop-ruby
Initial implementation of FlipFlop in Ruby
2022-01-05 21:36:43 -08:00
Adam Coffman e658602723 initial implementation of FlipFlop in Ruby 2022-01-05 23:12:30 -06:00
Jeff Atwood 87b886e06d Merge pull request #429 from breedx2/splat_input_handling
81 Splat.java - improve input handling of numeric values
2022-01-05 20:33:56 -08:00
jason 56ccff2d55 improve input handling of numeric values 2022-01-05 19:48:19 -08:00
Jeff Atwood 1b6fd48d48 Merge pull request #428 from ITrustNumbers/main
Ported Chief game to Python
2022-01-05 13:42:52 -08:00