public void RotateRightTest() { Assert.Equal("eabcd", Day21.RotateRight("abcde", 1)); Assert.Equal("deabc", Day21.RotateRight("abcde", 12)); }