Sha256: 40ab62e22145466711bee7d079f8a249a347b5bb37a093810813effbc02e0d79
Contents?: true
Size: 1.24 KB
Versions: 28
Compression:
Stored size: 1.24 KB
Contents
using System; public class CustomSet { public CustomSet(params int[] values) { throw new NotImplementedException("You need to implement this function."); } public CustomSet Insert(int value) { throw new NotImplementedException("You need to implement this function."); } public bool Empty() { throw new NotImplementedException("You need to implement this function."); } public bool Contains(int value) { throw new NotImplementedException("You need to implement this function."); } public bool Subset(CustomSet right) { throw new NotImplementedException("You need to implement this function."); } public bool Disjoint(CustomSet right) { throw new NotImplementedException("You need to implement this function."); } public CustomSet Intersection(CustomSet right) { throw new NotImplementedException("You need to implement this function."); } public CustomSet Difference(CustomSet right) { throw new NotImplementedException("You need to implement this function."); } public CustomSet Union(CustomSet right) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
28 entries across 28 versions & 1 rubygems