Skip to content

Commit

Permalink
fix: clarify syllabus for duplicate file finder
Browse files Browse the repository at this point in the history
replaces #262
  • Loading branch information
gvwilson committed Dec 30, 2023
1 parent ffd7d8c commit 3174a09
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/dup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,11 +289,11 @@ <h1>Chapter 3: Finding Duplicate Files</h1>

<li markdown="1">Use big-oh notation to estimate the running time of algorithms.</li>

<li markdown="1">The output of a hash function is deterministic but not predictable.</li>
<li markdown="1">The output of a hash function is deterministic but not easy to predict.</li>

<li markdown="1">A good hash function's output is evenly distributed.</li>

<li markdown="1">A cryptographic hash function generates a unique identifier for a file's contents.</li>
<li markdown="1">A large cryptographic hash can be used to uniquely identify a file's contents.</li>

</ul>

Expand Down
4 changes: 2 additions & 2 deletions docs/syllabus/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ <h1>Appendix C: Syllabus</h1>
<ul>
<li markdown="1">A hash function creates a fixed-size value from an arbitrary sequence of bytes.</li>
<li markdown="1">Use big-oh notation to estimate the running time of algorithms.</li>
<li markdown="1">The output of a hash function is deterministic but not predictable.</li>
<li markdown="1">The output of a hash function is deterministic but not easy to predict.</li>
<li markdown="1">A good hash function's output is evenly distributed.</li>
<li markdown="1">A cryptographic hash function generates a unique identifier for a file's contents.</li>
<li markdown="1">A large cryptographic hash can be used to uniquely identify a file's contents.</li>
</ul>
</li>
<li>
Expand Down
4 changes: 2 additions & 2 deletions src/dup/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ abstract: >
syllabus:
- A hash function creates a fixed-size value from an arbitrary sequence of bytes.
- Use big-oh notation to estimate the running time of algorithms.
- The output of a hash function is deterministic but not predictable.
- The output of a hash function is deterministic but not easy to predict.
- A good hash function's output is evenly distributed.
- A cryptographic hash function generates a unique identifier for a file's contents.
- A large cryptographic hash can be used to uniquely identify a file's contents.
depends:
---

Expand Down

0 comments on commit 3174a09

Please sign in to comment.