Sha256: ada5493457cd11cae6ce30fb6d6a8cca525bedaa90788dcf3a442d75f21976da
Contents?: true
Size: 360 Bytes
Versions: 281
Compression:
Stored size: 360 Bytes
Contents
using System; using System.Collections.Generic; public enum SublistType { Equal, Unequal, Superlist, Sublist } public static class Sublist { public static SublistType Classify<T>(List<T> list1, List<T> list2) where T : IComparable { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems