Skip to content

Commit

Permalink
Add instructions append
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras committed Apr 7, 2024
1 parent 50588a2 commit 2ad8921
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions exercises/practice/binary-search/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Instructions append

In Racket, this exercise uses sorted [vectors] rather than lists because vectors support constant-time access of its elements. Like several other Lisp tracks, when an item isn't present in the vector, the expectation is that the [Boolean literal `#f`][booleans] will be returned rather than raising an exception.

[vectors]: https://docs.racket-lang.org/guide/vectors.html
[booleans]: https://docs.racket-lang.org/reference/booleans.html

0 comments on commit 2ad8921

Please sign in to comment.