现在有一个整数类型的数组,数组中只有一个元素只出现一次,其余元素都出现三次。你需要找出只出现一次的元素 数据范围: 数组长度满足 ,数组中每个元素的值满足 进阶:空间复杂度 , 时间复杂度
示例1
输入
[0,0,0,5]
输出
5
示例2
输入
[0]
输出
0
加载中...
import java.util.*; public class Solution { /** * * @param A int整型一维数组 * @return int整型 */ public int singleNumber (int[] A) { // write code here } }
class Solution { public: /** * * @param A int整型一维数组 * @param n int A数组长度 * @return int整型 */ int singleNumber(int* A, int n) { // write code here } };
# # # @param A int整型一维数组 # @return int整型 # class Solution: def singleNumber(self , A ): # write code here
/** * * @param A int整型一维数组 * @return int整型 */ function singleNumber( A ) { // write code here } module.exports = { singleNumber : singleNumber };
# # # @param A int整型一维数组 # @return int整型 # class Solution: def singleNumber(self , A ): # write code here
package main /** * * @param A int整型一维数组 * @return int整型 */ func singleNumber( A []int ) int { // write code here }
[0,0,0,5]
5
[0]
0