Input:number = "123", digit = "3"Output:"12"Explanation:There is only one '3' in "123". After removing '3', the result is "12". Example 2: Input:number = "1231", digit = "1"Output:"231"Explanation:We can remove the first '1' to get "231" or remove the second '1' to ...