Word game
Sign in to test your solution.
// 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);
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.