Beispiel #1
0
 public IReadOnlyCollection <Location> RandomOrder()
 => randomOrder.ShuffleAndTake(minefield, (int)Parameter.MineCount);
Beispiel #2
0
 public IReadOnlyCollection <Location> FisherYates()
 => fisherYates.ShuffleAndTake(minefield, (int)Parameter.MineCount);
Beispiel #3
0
 public IReadOnlyCollection <Location> GloballyUniqueIdentifier()
 => globallyUniqueIdentifier.ShuffleAndTake(minefield, (int)Parameter.MineCount);