The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
144 views

Connect Four AI (Minimax) in Clojure

I wrote a Connect Four game inlcuding a AI in Clojure and since I'm rather new to Clojure, some review would be highly appreciated. It can include everything, coding style, simplifications, etc. But ...
1
vote
0answers
88 views

Java alphabeta search

Is this code correct? This code was adapted from this alphabeta pseudocode. AlphaBeta search is often mentioned but getting the code 100% correct is tricky. IGame is an interface with two methods: ...
1
vote
1answer
547 views

Optimizations to 8-puzzle

I am a CS student about to enter my junior year and I am attempting to get better and better at programming and thought that this would be a good place to toss my code out there to see if some of you ...
2
votes
1answer
324 views

Python: Academic implementation of artificial neural network

With some free time, I decided to study artificial neural networks as an academic exercise (not homework). Over the course of my studies, I decided to write a Python application that would allow me to ...