Sha256: 19a9099bd38462144bc7c2aa94d176e66070df4a9f82d722e1c526b66eaf55ef
Contents?: true
Size: 1.04 KB
Versions: 264
Compression:
Stored size: 1.04 KB
Contents
using System; using System.Collections.Generic; public class Graph<T> { public Graph(T value, IEnumerable<Graph<T>> children) { } public T Value { get { throw new NotImplementedException("You need to implement this function."); } } public IEnumerable<Graph<T>> Children { get { throw new NotImplementedException("You need to implement this function."); } } } public static class Pov { public static Graph<T> CreateGraph<T>(T value, IEnumerable<Graph<T>> children) { throw new NotImplementedException("You need to implement this function."); } public static Graph<T> FromPOV<T>(T value, Graph<T> graph) where T : IComparable { throw new NotImplementedException("You need to implement this function."); } public static IEnumerable<T> TracePathBetween<T>(T value1, T value2, Graph<T> graph) where T : IComparable { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
264 entries across 264 versions & 1 rubygems