Added solution for problem 35

This commit is contained in:
2021-06-06 12:19:17 -04:00
parent 0866991451
commit cdaa1807ab
3 changed files with 143 additions and 3 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, 25];
private static tooLong: number[] = [14, 15, 23, 24, 25, 35];
//The driver function for the benchmark selection
public static benchmarkMenu(): void{
let selection: BenchmarkOptions = BenchmarkOptions.size;