Leetcode 2481. Minimum Cuts to Divide a Circle
A valid cut in a circle can be:
A cut that is represented by a straight line that touches two points on the edge of the circle and passes through its center, or
A cut that is represented by a straight line that touches one point on the edge of the circle and its center.
Some valid and invalid cuts are shown in the figures below.

Given the integer n
, return the minimum number of cuts needed to divide a circle into n
equal slices.
Example 1:

Input: n = 4Output: 2Explanation: The above figure shows how cutting the circle twice through the middle divides it into 4 equal slices.
Example 2:

Input: n = 3Output: 3Explanation:At least 3 cuts are needed to divide the circle into 3 equal slices. It can be shown that less than 3 cuts cannot result in 3 slices of equal size and shape. Also note that the first cut will not divide the circle into distinct parts.
Runtime: 0 ms, faster than 100.00% of Java online submissions for Minimum Cuts to Divide a Circle.
Memory Usage: 40.9 MB, less than 51.66% of Java online submissions for Minimum Cuts to Divide a Circle.