Sha256: c483651caf9d6eef57bc39addd7228b304eec8a844079120941f312326fd3427
Contents?: true
Size: 526 Bytes
Versions: 281
Compression:
Stored size: 526 Bytes
Contents
using System; public class Deque<T> { public void Push(T value) { throw new NotImplementedException("You need to implement this function."); } public T Pop() { throw new NotImplementedException("You need to implement this function."); } public void Unshift(T value) { throw new NotImplementedException("You need to implement this function."); } public T Shift() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems