If given a letter from the set:
[abc...xyz]
and a shift, implement a shift cypher.
Example:
'abc'
with a shift of -1 yields
'zab'
hi
Covered negative shift this time
very straight forward solution that passes test suite but does not handle example in description correctly.
hello, what if shift >= 52 or shift < 0?
Does this work for negative shifts?
This is a sneaky way to get around the prohibition against using eval!
Find the two most distant points
1233 Solvers
Given two strings, find the maximum overlap
300 Solvers
262 Solvers
Matrix with different incremental runs
194 Solvers
410 Solvers