Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 575 Bytes

File metadata and controls

14 lines (10 loc) · 575 Bytes

1. Clone Repository

Clone this repository onto your local machine.

2. Build project

Use gradle to build the project.

3. Run Test Cases

Inspect the code in TreeTest.java and run the test cases using gradle.

4. Implement a Binary Search Tree Test Function

Implement the isBinarySearchTree function defined in ExerciseBst.java.
A successful implementation should see all three tests pass.

Hint: node.toString() gives you the pretty-print string for the binary tree node object