Sha256: d7e55314de3ee0fc15e910194d0daad2de91e975efa3ae3d86f145ac8056a21f
Contents?: true
Size: 1.45 KB
Versions: 24
Compression:
Stored size: 1.45 KB
Contents
using System; public class BinTree { public BinTree(int value, BinTree left, BinTree right) { throw new NotImplementedException("You need to implement this function."); } public int Value { get; } public BinTree Left { get; } public BinTree Right { get; } } public class Zipper { public int Value() { throw new NotImplementedException("You need to implement this function."); } public Zipper SetValue(int newValue) { throw new NotImplementedException("You need to implement this function."); } public Zipper SetLeft(BinTree binTree) { throw new NotImplementedException("You need to implement this function."); } public Zipper SetRight(BinTree binTree) { throw new NotImplementedException("You need to implement this function."); } public Zipper Left() { throw new NotImplementedException("You need to implement this function."); } public Zipper Right() { throw new NotImplementedException("You need to implement this function."); } public Zipper Up() { throw new NotImplementedException("You need to implement this function."); } public BinTree ToTree() { throw new NotImplementedException("You need to implement this function."); } public static Zipper FromTree(BinTree tree) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
24 entries across 24 versions & 1 rubygems