Practice data-structures pattern with value 22.
Ready — edit the code above and click Run.
using System;
class Program
{
static void Main()
{
int x = 22;
Console.WriteLine(x);
}
}
Try solving on your own first, then reveal the official answer.
Extend starter into full data-structures solution.