Sha256: 86a7bfd37be9e3d1b13e76c6161e78690a798c5ddf7988c678b6121562dd1374
Contents?: true
Size: 494 Bytes
Versions: 260
Compression:
Stored size: 494 Bytes
Contents
using System; using System.Collections.Generic; public class School { public void Add(string student, int grade) { throw new NotImplementedException("You need to implement this function."); } public IEnumerable<string> Roster() { throw new NotImplementedException("You need to implement this function."); } public IEnumerable<string> Grade(int grade) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
260 entries across 260 versions & 1 rubygems