https://leetcode.com/problems/binary-watch/description/?envType=problem-list-v2&envId=backtracking A binary watch has 4 LEDs on the top to represent the hours (0-11), and 6 LEDs on the bottom to represent the minutes (0-59). Each LED represents a zero or one, with the least significant bit on the right.For example, the below binary watch reads "4:51".Given an integer turnedOn which represents th..