Skip to content

Commit 84b159c

Browse files
authored
Remove unimplemented methods from CryptoSquare class (#2465)
These methods are not required for tests to pass, and are not mentioned in the requirements.
1 parent d36a9ff commit 84b159c

1 file changed

Lines changed: 1 addition & 16 deletions

File tree

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,7 @@
11
public static class CryptoSquare
22
{
3-
public static string NormalizedPlaintext(string plaintext)
4-
{
5-
throw new NotImplementedException("You need to implement this method.");
6-
}
7-
8-
public static IEnumerable<string> PlaintextSegments(string plaintext)
9-
{
10-
throw new NotImplementedException("You need to implement this method.");
11-
}
12-
13-
public static string Encoded(string plaintext)
14-
{
15-
throw new NotImplementedException("You need to implement this method.");
16-
}
17-
183
public static string Ciphertext(string plaintext)
194
{
205
throw new NotImplementedException("You need to implement this method.");
216
}
22-
}
7+
}

0 commit comments

Comments
 (0)