TeamGameFifteen1-Telerik / GameFifteen

Puzzle - a team project for Telerik Software Academy's High Quality Code course
MIT License
1 stars 0 forks source link

Fix Shufle when starting a new game #18

Closed M-Yankov closed 9 years ago

M-Yankov commented 9 years ago

Most of numbers are already at it's places

datavelizar commented 9 years ago

Shuffling relies on a random number between two constants in StandartGameInitializer class:

const int MinRoundsCount = 20; const int MaxRoundsCount = 50;

If we increase the rounds of shuffling the probability of harder game may increase, but still there is no guarantee.

M-Yankov commented 9 years ago

const int MinRoundsCount = 1120; const int MaxRoundsCount = 1150;