Update codes/typescript/chapter_computational_complexity/time_complexity.ts

Co-authored-by: Justin Tse <xiefahit@gmail.com>
pull/196/head
Yudong Jin 2 years ago committed by GitHub
parent 3906c3df06
commit 9f7a9fde20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -118,7 +118,9 @@ function factorialRecur(n: number): number {
return count;
}
var n = 8;
/* Driver Code */
// 可以修改 n 运行,体会一下各种复杂度的操作数量变化趋势
const n = 8;
console.log("输入数据大小 n = " + n);
let count = constant(n);

Loading…
Cancel
Save