Update docs/chapter_computational_complexity/time_complexity.md

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

@ -601,8 +601,8 @@ $$
console.log(0);
}
// +n*n技巧 3
for (var i = 0; i < 2 * n; i++) {
for (var j = 0; j < n + 1; j++) {
for (let i = 0; i < 2 * n; i++) {
for (let j = 0; j < n + 1; j++) {
console.log(0);
}
}

Loading…
Cancel
Save