Sha256: 365dcd63f685b8cbad92bd3d0455366002de968b1765c00bc12360d40612c7ff

Contents?: true

Size: 509 Bytes

Versions: 83

Compression:

Stored size: 509 Bytes

Contents

module BinarySearchTree

let left node  = failwith "You need to implement this function."

let right node = failwith "You need to implement this function."

let value node = failwith "You need to implement this function."

let singleton value = failwith "You need to implement this function."

let rec insert newValue tree = failwith "You need to implement this function."

let toList tree = failwith "You need to implement this function."

let fromList xs = failwith "You need to implement this function."

Version data entries

83 entries across 83 versions & 1 rubygems

Version Path
trackler-2.2.1.25 tracks/fsharp/exercises/binary-search-tree/BinarySearchTree.fs
trackler-2.2.1.24 tracks/fsharp/exercises/binary-search-tree/BinarySearchTree.fs
trackler-2.2.1.23 tracks/fsharp/exercises/binary-search-tree/BinarySearchTree.fs