Given a non-negative integer n, return a value that has only the rightmost set bit of n set and all other bits cleared. If n is 0, return 0.
Input: A JSON object {"n": <non-negative integer>}.
Output: Return the isolated lowest set bit of n (a power of two, or 0).
Input: {"n":12}
Output: 4
Explanation: 12 & -12 = 4 (the lowest set bit).Input: {"n":18}
Output: 2
Explanation: 18 & -18 = 2.0 <= n <= 10^15