Day6. Namespace style
This commit is contained in:
11
344. Reverse String/Program.cs
Normal file
11
344. Reverse String/Program.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace _344._Reverse_String;
|
||||
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var arr = "Hello, World!".ToArray();
|
||||
new Solution().ReverseString(arr);
|
||||
Console.WriteLine(String.Join("", arr));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user