Find and replace
Sign in to test your solution.
// Find and replace program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static string[] replace(string x, string y, string[] l)
{
}
static void output(string[] l)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
string[] rhyme = {"roly", "poly", "roly", "poly", "up", "up", "up", "roly", "poly", "roly", "poly", "down", "down", "down"};
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.