BLACKJACK SIMULATION

Github

Milestones

Basic Implementation

Implement a basic playable version of blackjack in C.

Implement Splitting

Splitting is a bit difficult. Implement ability to play multiple hands in the same round.

Automatic Simulation

Automatically play blackjack for thousands of games with specific strategies.

Analysis Game Theory

Investigate different strategies and how it affects net winnings and losses.

Blog Posts

First Implementation

Posted on 21 Nov, 2024

Implemented this version of blackjack quite a while ago, however, it only has a simple CLI and can be played by a user with inputs. Whilst attempting to implement a system to handle the decision of splitting, it seems my implementation is not as rigorous as I first thought. Next step is to read thoroughly a book on C and re-implement the basic logic with splitting.