<html> <style> body {

 background-color:#faf5f2 ! important;
 color:#e87b81;

}

div.dokuwiki div.toc {

 float:left ! important;
 margin-top:2em ! important;

} </style> </html>

Freecell Game Wiki

FreeCell is a solitaire-based card game played with a 52-card standard deck.

Rules: Construction and layout:

Building during play:

Moves:

Victory:

Challenges/Insights:

The coding for this program proved to be quite difficult simply because of the number of moves there are. Each rule requires a different scenario in the program. Since the game is built using stacks, I found that it took a lot of code to get everything done correctly. During testing, I kept finding more problems, simply because I hadn't considered every possible rule. The hardest part was dealing with the stacks and figuring out how to print them out. I ended up printing the game right to left instead of up and down because I was unable to print stacks vertically.