Sha256: 3d2f2056b754c3cb4f6bf11fadbf3c941294cd295aa319b2739359d53cfa4966
Contents?: true
Size: 532 Bytes
Versions: 142
Compression:
Stored size: 532 Bytes
Contents
using System; using System.Collections.Generic; public enum Plant { Violets, Radishes, Clover, Grass } public class Garden { public Garden(IEnumerable<string> children, string windowSills) { } public IEnumerable<Plant> GetPlants(string child) { throw new NotImplementedException("You need to implement this function."); } public static Garden DefaultGarden(string windowSills) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
142 entries across 142 versions & 1 rubygems