Added solution to problem 25

This commit is contained in:
2021-04-08 13:48:07 -04:00
parent 3e570ef4e1
commit 57ec17142f
3 changed files with 127 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ enum BenchmarkOptions{runSpecific = 1, runAllShort, runAll, exit, size};
export class Benchmark{
private static tooLong: number[] = [14, 15, 23, 24];
private static tooLong: number[] = [14, 15, 23, 24, 25];
//The driver function for the benchmark selection
public static benchmarkMenu(): void{
let selection: BenchmarkOptions = BenchmarkOptions.size;