Skip to content

Instantly share code, notes, and snippets.

View iezekiel's full-sized avatar

Constandinos Iezekiel iezekiel

View GitHub Profile
static string Flatten(string array)
{
string result; //return string
try
{
bool previousWasNumber = false; //chech for numbers greater than 9
result = "["; //starting the array
foreach (char c in array.ToCharArray())
{
int check = (int)c; //check character