Your move

Sign in to test your solution.
// Your move program using System; class Submission { // ------------------------- // Subprograms // ------------------------- static string get_move() { } static int[] get_indexes(string move) { } // ------------------------- // Main program // ------------------------- public static void Main(string[] args) { int[] indexes = get_indexes(move); } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.