add Programmyday form github
This commit is contained in:
13
DoppelteBuchstaben/Program.cs
Normal file
13
DoppelteBuchstaben/Program.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace DoppelteBuchstaben
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
DuplicateChars duplicate = new DuplicateChars();
|
||||
string text = Console.ReadLine();
|
||||
Console.WriteLine(duplicate.ContainsDuplicateChars(text));
|
||||
Console.WriteLine(duplicate.RemoveDuplicateChars(text));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user