Sha256: 8c9cb544bdce198fd00225f8d66374ec8eb790b2e1c84923dedfd3fb485c064a
Contents?: true
Size: 516 Bytes
Versions: 281
Compression:
Stored size: 516 Bytes
Contents
using System; using System.Collections.Generic; public class Reactor { public InputCell CreateInputCell(int value) { throw new NotImplementedException("You need to implement this function."); } public ComputeCell CreateComputeCell(IEnumerable<Cell> producers, Func<int[], int> compute) { throw new NotImplementedException("You need to implement this function."); } } public abstract class Cell { } public class InputCell : Cell { } public class ComputeCell : Cell { }
Version data entries
281 entries across 281 versions & 1 rubygems