Skip to content

Commit

Permalink
Corrected code links in readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
shrinivaskane committed Dec 20, 2023
1 parent d6abec3 commit 112fe0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hashtable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Hash tables provide O(1) time complexity for inserting, deletion, and searching

## Application

When there is no need to preserve the order of data, hash tables are used for fast O(1) reads and writes. This performance advantage makes hash tables more suitable than [Arrays](../arrays) and [Binary Search Trees](../tree).
When there is no need to preserve the order of data, hash tables are used for fast O(1) reads and writes. This performance advantage makes hash tables more suitable than [Arrays](../array) and [Binary Search Trees](../tree).

Compilers use hash tables to generate a symbol table to keep track of variable declarations.

Expand All @@ -84,4 +84,4 @@ Compilers use hash tables to generate a symbol table to keep track of variable d
* [Fastest Way to Cut a Brick Wall](./cut_brick_wall_test.go), [Solution](./cut_brick_wall.go)
* [Smallest Missing Positive Integer](./smallest_missing_positive_integer_test.go), [Solution](./smallest_missing_positive_integer.go)
* [Find Anagrams](./find_anagrams_test.go), [Solution](./find_anagrams.go)
* [Find Max Points on the Same Line](m./ax_points_on_line_test.go), [Solution](./max_points_on_line.go)
* [Find Max Points on the Same Line](./max_points_on_line_test.go), [Solution](./max_points_on_line.go)

0 comments on commit 112fe0c

Please sign in to comment.