Hi, I was solving this problem a few minutes ago, and the following problem is a subproblem of this one.
Given integer $$$n$$$, and array $$$a$$$ consisting of $$$n - 1$$$ integers, all of them are equal to some value $$$b$$$. Later, some integer $$$c$$$, such that $$$c \ne b$$$ is selected and inserted into the array $$$a$$$ at random position. By given $$$n$$$ and $$$a$$$ find $$$c$$$.
This problem itself isn't so difficult, but with a certain restriction I couldn't solve it. The restriction is folowing: you can't use $$$if$$$ in any way.
I came up with the solution, that calls $$$if$$$ only one time.
Can you solve this problem without using $$$if$$$?