Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/exercise/02.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Elaborate on your learnings here in `src/exercise/02.md`

Memoization: a performance optimization technique which eliminates the need to
recompute a value for a given input by storing the original computation and
returning that stored value when the same input is provided. Caching is a form
of memoization. Here's a simple implementation of memoization:
returning that stored value when the same input is provided. Memoization is a form
of caching. Here's a simple implementation of memoization:

```typescript
const values = {}
Expand Down