Add the IsNonsense interface for FrequencyAnalyzer.
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-10-14 21:32:56 +03:00
parent b53559030f
commit a56704226b
4 changed files with 20 additions and 5 deletions
@@ -0,0 +1,6 @@
package cipher_analytical_machine.analyzers.caesar;
public interface IsNonsense {
boolean isNonsense(String message);
}