Sha256: bca321f5fcae8b7657e5b56877c36955502faf572082f1aebba15b6db38c0a0f
Contents?: true
Size: 253 Bytes
Versions: 75
Compression:
Stored size: 253 Bytes
Contents
class RotationalCipher { private int key public RotationalCipher(int key) { this.key = key } public String rotate(String cipherText) { throw new UnsupportedOperationException('Method implementation is missing') } }
Version data entries
75 entries across 75 versions & 1 rubygems