Skip to content

Commit da73491

Browse files
committed
edits + added extra resources
1 parent 1e6317a commit da73491

File tree

5 files changed

+30
-12
lines changed

5 files changed

+30
-12
lines changed

.gitattributes

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
docs/** linguist-documentation=false
33

44
# This whole project is especially markdown based. It's worth showing that
5-
*.md linguist-detectable=true
6-
*.md linguist-documentation=false
5+
*.md linguist-detectable=true

docs/algorithms.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ Examples:
10551055

10561056
<sup>Not actually in the study design</sup>
10571057

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.
10591059

10601060
See a conversation between myself and [Sebastian Sardina](https://www.rmit.edu.au/contact/staff-contacts/academic-staff/s/sardina-professor-sebastian):
10611061

@@ -1213,7 +1213,7 @@ Given lower bound $a$ and upper bound $b$, calculate the mid (average) value $c$
12131213

12141214
Yeah this took you a while to realise. Pascals triangle is a seating plan for combinations.
12151215

1216-
```python
1216+
```python title="Pascal's triangle in Python"
12171217
from math import comb
12181218
12191219
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
12291229
12301230
## Artificial Intelligence (AI)
12311231
1232-
- "*The intelligence exhibited by machines or software*"
1233-
-
1232+
> "*The intelligence exhibited by machines or software*"
12341233
12351234
### Intelligence
12361235
@@ -1337,8 +1336,7 @@ To which Searle responded
13371336

13381337
To which Searle responded
13391338

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
13421340

13431341
##### The Brain Simulator Argument
13441342

@@ -1391,14 +1389,16 @@ Essentially, it takes several inputs and multiplies them by their bias to be mat
13911389
Which can be formulated with
13921390

13931391
$$
1394-
{\displaystyle f(\mathbf {x} )={\begin{cases}1&{\text{if }}\ \mathbf {w} \cdot \mathbf {x} +b>0,\\
1392+
{\displaystyle f(\mathbf {x} )={\begin{cases}1&{\text{if }}\ \mathbf {w} \cdot \mathbf {x} +b>0,\newline
13951393
0&{\text{otherwise}}\end{cases}}}
13961394
$$
13971395

1398-
$$\text{or}$$
1396+
$$
1397+
\text{or}
1398+
$$
13991399

14001400
$$
1401-
{\displaystyle f(\mathbf {x} )={\begin{cases}1&{\text{if }}\ \mathbf {\displaystyle \sum _{i=1}^{m}w_{i}x_{i}}+b>0,\\
1401+
{\displaystyle f(\mathbf {x} )={\begin{cases}1&{\text{if }}\ \mathbf {\displaystyle \sum_{i=1}^{m}w_{i}x_{i}}+b>0,\newline
14021402
0&{\text{otherwise}}\end{cases}}}
14031403
$$
14041404

docs/extra-resources.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
icon: material/book-search
3+
---
4+
5+
6+
# Extra Resources
7+
8+
## Study score scaling
9+
10+
[https://www.tsfx.edu.au/vce/edge-online/the-study-score-predictor-technology-subjects/](https://www.tsfx.edu.au/vce/edge-online/the-study-score-predictor-technology-subjects/)
11+
12+
Although it's a bit out of date, this site shows how your exam performace (%) correlates with your raw and scaled study score

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
Pull requests are welcome! Please see [the repository](https://github.com/mcloughlan/algo-notes)
1010

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+
1113
!!! warning New study design
1214

1315
I removed the outdated content from before 2023 (the old study design), but there may be implicit references to it in other current content

mkdocs.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,14 @@ extra_javascript:
2626
- https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js
2727
- https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js
2828
- js/math.js
29-
3029
extra_css:
3130
- https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css
31+
nav:
32+
- Home: index.md
33+
- Algorithms: algorithms.md
34+
- Graphs: graphs.md
35+
- Computer Science: computer-science.md
36+
- Extra Resources: extra-resources.md
3237
markdown_extensions:
3338
- admonition
3439
- pymdownx.details

0 commit comments

Comments
 (0)