Contact

About →

Thank you for checking out JAPAN.GG!🙇🏻‍♂️

Inquiries:

hello@japan.gg


Elements

Text

This is bold

i = 0;

while (!deck.isInOrder()) {
    print 'Iteration ' + i;
    deck.shuffle();
    i++;
}

print 'It took ' + i + ' iterations to sort the deck.';