Added solution to problem 3

This commit is contained in:
2020-10-19 18:13:46 -04:00
parent eeb927d1e5
commit 180946eff3
4 changed files with 106 additions and 2 deletions

View File

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