tracks/csharp/exercises/anagram/Anagram.cs in trackler-2.1.0.53 vs tracks/csharp/exercises/anagram/Anagram.cs in trackler-2.1.0.54
- old
+ new
@@ -1,14 +1,14 @@
using System;
public class Anagram
{
- public Anagram (string baseWord)
+ public Anagram(string baseWord)
{
throw new NotImplementedException("You need to implement this function.");
}
- public string[] Match (string[] potentialMatches)
+ public string[] Anagrams(string[] potentialMatches)
{
throw new NotImplementedException("You need to implement this function.");
}
}
\ No newline at end of file