10 lines
212 B
C#
10 lines
212 B
C#
namespace _784._Letter_Case_Permutation;
|
|
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(String.Join(" ", new Solution().LetterCasePermutation("hello")));
|
|
}
|
|
}
|