Skip to content

Commit

Permalink
Update exercises/practice/binary-search-tree/BinarySearchTree.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Erik Schierboom <[email protected]>
  • Loading branch information
michalporeba and ErikSchierboom authored Jan 9, 2024
1 parent 4a0c7a3 commit d16a2b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/practice/binary-search-tree/BinarySearchTree.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ public class BinarySearchTree<T> where T : IComparable
public int Count => throw new NotImplementedException("You need to implement this property.");
public int Depth => throw new NotImplementedException("You need to implement this property.");

public void Add(T value) => throw new NotImplementedException("You need to implement this function.");
public bool Contains(T value) => throw new NotImplementedException("You need to implement this function.");
public void Add(T value) => throw new NotImplementedException("You need to implement this method.");
public bool Contains(T value) => throw new NotImplementedException("You need to implement this method.");
}

0 comments on commit d16a2b8

Please sign in to comment.