26
votes
6answers
2k views

Create a User-Profile Mini-Game

Yesterday, I stumbled on a very clever thing. Yes, that's a working implementation of Tic-Tac-Toe on a user profile page, from @minitech. Of course, the moment I saw it, I had to reverse engineer ...
4
votes
0answers
452 views

Minimal Sudoku Generator

Ask questions if you need to, I'll elaborate on anything that needs clarified. My challenge is to unsolve a sudoku to a minimal state. Basically take a supplied, solved, sudoku board and unsolve it ...
9
votes
4answers
1k views

Best Scoring Boggle Board

I was interested in seeing the answers to this question, but the it was never corrected/improved. Given a set of 6-sided Boggle dice (stolen from this question), determine in two minutes which board ...
5
votes
1answer
1k views

Sudoku board generator

A program that randomly generates a Sudoku game board with varying degrees of difficulty (however you decide to measure difficulty). Sudoku requires that there is only one solution, so your program ...
0
votes
0answers
2k views

Write an accurate evaluation function for a Snakes and Ladders game

Instructions Given the following board, , determine the percentage chance that a player will win. Rules of the game One six sided dice! Two players take turns rolling the dice and moving their ...
7
votes
2answers
324 views

A BlackJack KOTH contest

BlackJack As I had a blast working on the original KOTH challenge, I wanted to come up with another one. For me, the fun of these AI challenges is in refining a comparatively simple bot ...
2
votes
0answers
161 views

Console Role Playing Game [closed]

Below are a basic set of requirements. The following commands (for an interface to the game): attack <target>, <move> goto <place> buy <item> enum < targets, ...