Sha256: b99770f3907eabfd247655207abdd9b6a80d08911fb0f7dd63b748cd26cd9561
Contents?: true
Size: 562 Bytes
Versions: 142
Compression:
Stored size: 562 Bytes
Contents
using System; public enum Bucket { One, Two } public class TwoBucketResult { public int Moves { get; set; } public Bucket GoalBucket { get; set; } public int OtherBucketContents { get; set; } } public class TwoBuckets { public TwoBuckets(int bucketOneSize, int bucketTwoSize, Bucket startBucket) { throw new NotImplementedException("You need to implement this function."); } public TwoBucketResult Solve(int goal) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
142 entries across 142 versions & 1 rubygems