Sha256: df4396a0bbd8a51b8940058473dcdf1a3d776c8e4a98f0a910004e7b57e1cbc8
Contents?: true
Size: 479 Bytes
Versions: 156
Compression:
Stored size: 479 Bytes
Contents
module LinkedList let mkLinkedList () = failwith "You need to implement this function." let addToEmpty newValue linkedList = failwith "You need to implement this function." let pop linkedList = failwith "You need to implement this function." let shift linkedList = failwith "You need to implement this function." let push newValue linkedList = failwith "You need to implement this function." let unshift newValue linkedList = failwith "You need to implement this function."
Version data entries
156 entries across 156 versions & 1 rubygems