public void AngleClock_1()
        {
            var solution = new _1344_AngleBetweenHandsOfAClock();
            var result   = solution.AngleClock(12, 30);

            Assert.AreEqual(165, result);
        }
        public void AngleClock_6()
        {
            var solution = new _1344_AngleBetweenHandsOfAClock();
            var result   = solution.AngleClock(1, 57);

            Assert.AreEqual(76.5, result);
        }