Word game

Log in om je oplossingen te testen.
// Word game program using System; using System.IO; using System.Collections.Generic; class Submission { // ------------------------- // Globals // ------------------------- static Random random_generator = new Random(); // ------------------------- // Subprograms // ------------------------- static string[,] shuffle_letters() { } static void show_letters(string[,] grid) { } // ------------------------- // Main program // ------------------------- public static void Main(string[] args) { string[,] grid = shuffle_letters(); show_letters(grid); } }
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.