Sha256: 0615bfccd3b4cd3b0733a5ab426997c36619e4ba618aeb3225a7b87ffc4dbb8e
Contents?: true
Size: 577 Bytes
Versions: 17
Compression:
Stored size: 577 Bytes
Contents
using System; using System.Collections.Generic; public class Tree { public Tree(string value, params Tree[] children) { throw new NotImplementedException("You need to implement this function."); } } public static class Pov { public static Tree FromPov(Tree tree, string from) { throw new NotImplementedException("You need to implement this function."); } public static IEnumerable<string> PathTo(string from, string to, Tree tree) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
17 entries across 17 versions & 1 rubygems