You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/algorithms.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1055,7 +1055,7 @@ Examples:
1055
1055
1056
1056
<sup>Not actually in the study design</sup>
1057
1057
1058
-
In terms of"Big O"/worst case space complexity, the space complexity is the auxiliary space occupied by the algorithm. Which does not include the input.
1058
+
In terms of"Big O"/worst case space complexity, the space complexity is the auxiliary space occupied by the algorithm. Which does not include the input or the output.
1059
1059
1060
1060
See a conversation between myself and [Sebastian Sardina](https://www.rmit.edu.au/contact/staff-contacts/academic-staff/s/sardina-professor-sebastian):
1061
1061
@@ -1213,7 +1213,7 @@ Given lower bound $a$ and upper bound $b$, calculate the mid (average) value $c$
1213
1213
1214
1214
Yeah this took you a while to realise. Pascals triangle is a seating plan for combinations.
1215
1215
1216
-
```python
1216
+
```python title="Pascal's triangle in Python"
1217
1217
from math import comb
1218
1218
1219
1219
for i in range(0, 11):
@@ -1229,8 +1229,7 @@ These are also the coefficients to $(x+1)^n$ where $n$ is the row in Pascal's tr
1229
1229
1230
1230
## Artificial Intelligence (AI)
1231
1231
1232
-
- "*The intelligence exhibited by machines or software*"
1233
-
-
1232
+
> "*The intelligence exhibited by machines or software*"
1234
1233
1235
1234
### Intelligence
1236
1235
@@ -1337,8 +1336,7 @@ To which Searle responded
1337
1336
1338
1337
To which Searle responded
1339
1338
1340
-
- You're stupid. ffs, this is literally just adding more inputs and outputs. It still doesn't understand
1341
-
- He didn't swear, I paraphrased - From 2024 Freddy
1339
+
- You're stupid. This is literally just adding more inputs and outputs. It still doesn't understand
1342
1340
1343
1341
##### The Brain Simulator Argument
1344
1342
@@ -1391,14 +1389,16 @@ Essentially, it takes several inputs and multiplies them by their bias to be mat
Copy file name to clipboardExpand all lines: docs/index.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@
8
8
9
9
Pull requests are welcome! Please see [the repository](https://github.com/mcloughlan/algo-notes)
10
10
11
+
If you are studying some non-VCE type of 'algorithms and analysis' this site will still be helpful, but keep in mind that the bulk of this website is designed for VCE students.
12
+
11
13
!!! warning New study design
12
14
13
15
I removed the outdated content from before 2023 (the old study design), but there may be implicit references to it in other current content
0 commit comments