Skip to content

Commit 2cbb5e4

Browse files
committed
integrated hashing with chaining to the generator
1 parent f25b482 commit 2cbb5e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/TumgadCLI.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ private static void chooseExercises() {
171171
RadixSort.generateExercise();
172172
break;
173173
case "HC":
174-
say("Hashing (Chaining) can not be generated yet, still in development");
174+
HashingChaining.generateExercise();
175+
System.out.println(ANSI_PURPLE + "Generating Hashing with Chaining" + ANSI_RESET);
175176
break;
176177
case "HD":
177178
System.out.println(ANSI_PURPLE + "Generating Double Hashing" + ANSI_RESET);
@@ -209,7 +210,6 @@ private static void chooseExercises() {
209210
break;
210211
case "DEV":
211212
say("Generating components that are still in development");
212-
HashingChaining.generateExercise();
213213
break;
214214
default:
215215
error("There is no exercise with the shorthand " + option);

0 commit comments

Comments
 (0)