Added solution for problem 24

This commit is contained in:
2021-04-08 13:17:49 -04:00
parent 3704bb64c3
commit 3e570ef4e1
3 changed files with 101 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];
private static tooLong: number[] = [14, 15, 23, 24];
//The driver function for the benchmark selection
public static benchmarkMenu(): void{
let selection: BenchmarkOptions = BenchmarkOptions.size;