diff options
-rw-r--r-- | csci1913/Java/lab13_strap012.java | 2 | ||||
-rw-r--r-- | csci1913/Java/project3/project3_strap012.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/csci1913/Java/lab13_strap012.java b/csci1913/Java/lab13_strap012.java index 8f6746b..e5ce45d 100644 --- a/csci1913/Java/lab13_strap012.java +++ b/csci1913/Java/lab13_strap012.java @@ -16,7 +16,7 @@ class Test private static int hash(String name) { - return (name.charAt(0) + name.charAt(name.length()-1)) * name.length() % 997; + return (name.charAt(0) + name.charAt(name.length()-1)) * name.length() % 1023; } public static void main(String [] args) diff --git a/csci1913/Java/project3/project3_strap012.java b/csci1913/Java/project3/project3_strap012.java index 15d021b..8adef5a 100644 --- a/csci1913/Java/project3/project3_strap012.java +++ b/csci1913/Java/project3/project3_strap012.java @@ -84,9 +84,9 @@ class AnagramTree { } } catch (NullPointerException ignore) { /* - This exception exists as a kludge for any time - subtree is null. The program does bad things (crash) - if this is not present. + This exception exists as a kludge for any time + subtree is null. The program does bad things + if this is not present. */ } } |