Skip to content

Commit 228894a

Browse files
authored
Merge pull request #353 from fullstack-development/sicp-power-2-fix
Use unicode-native power 2 sign
2 parents f611558 + 8325576 commit 228894a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared/middle/sicp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This fundamental work emphasizes controlling the complexity of software systems
2828
* What is `Θ(n)` notation used for?
2929
* What does grow faster: `Θ(log(n))` or `Θ(sqrt(n))`?
3030
* What does grow faster: `Θ(n)` or `Θ(1000*n)`?
31-
* What does grow faster: `Θ(n*2)` or `Θ(n^2)`? *`^2` means power of two*.
31+
* What does grow faster: `Θ(n*2)` or `Θ(n²)`?
3232
* What are probabilistic algorithms?
3333

3434
* [1.3 Formulating Abstractions with Higher-Order Procedures](http://mitpress.mit.edu/sites/default/files/sicp/full-text/book/book-Z-H-4.html#%_toc_%_sec_1.3)

0 commit comments

Comments
 (0)