9 lines
197 B
C#
9 lines
197 B
C#
|
using System;
|
|||
|
|
|||
|
public static class ReverseString
|
|||
|
{
|
|||
|
public static string Reverse(string input)
|
|||
|
{
|
|||
|
throw new NotImplementedException("You need to implement this function.");
|
|||
|
}
|
|||
|
}
|