Feel free to contact me with your ideas for the blog, suggestions of topics to cover, or especially your favorite places in Nice that I might have missed. Please note that whereas I can answer a quick question, due to time constraints I am unable to give detailed travel or itinerary advice.
i = 0;
while (!deck.isInOrder()) {
print 'Iteration ' + i;
deck.shuffle();
i++;
}
print 'It took ' + i + ' iterations to sort the deck.';