We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5115b commit a46a5a0Copy full SHA for a46a5a0
src/main/java/com/thealgorithms/others/StringMatchFiniteAutomata.java
@@ -11,7 +11,7 @@
11
public final class StringMatchFiniteAutomata {
12
13
// Constants
14
- private static final int CHARS = 256; // Total number of characters in the input alphabet
+ private static final int CHARS = Character.MAX_VALUE + 1; // Total number of characters in the input alphabet
15
16
// Private constructor to prevent instantiation
17
private StringMatchFiniteAutomata() {
0 commit comments