Added solution to problem 23

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