no is in foundations of english and doesn't know how to write normal sentences.
luckily no is a prodigy in coding and knows how to make string arrays in the form of sentences
turn no's arrays into sentences
ex.
["the", "dog", "is", "brown"]
"the dog is brown"
using System;
public class Kata
{
public static string ArrayToSentence(string[] words)
{
// Your code here!!!
}
}
namespace Solution {
using NUnit.Framework;
using System;
// TODO: Replace examples and use TDD by writing your own tests
[TestFixture]
public class SolutionTest
{
[Test]
public void MyTest()
{
Assert.AreEqual("the cat ran up the hill and fell back down", Kata.ArrayToSentence(new string[]{"the", "cat", "ran", "up", "the", "hill", "and", "fell", "back", "down"}));
}
}
}