Sha256: 9abcb51b23d47cefa19041a00aec2ccc7b13dbde015deb7267f74b71e3e0ca5f
Contents?: true
Size: 459 Bytes
Versions: 139
Compression:
Stored size: 459 Bytes
Contents
using System; using System.Collections.Generic; public enum Plant { Violets, Radishes, Clover, Grass } public class KindergartenGarden { public KindergartenGarden(string diagram) { } public KindergartenGarden(string diagram, IEnumerable<string> students) { } public IEnumerable<Plant> Plants(string student) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
139 entries across 139 versions & 1 rubygems