SOLUTION INFO
C++ · main.cpp
class Solution {
public:
bool doesValidArrayExist(vector<int>& derived) {
return accumulate(derived.begin(), derived.end(), 0, bit_xor<>()) == 0;
}
};
SOLUTION DESCRIPTION
풀이 설명
등록된 풀이 설명이 없습니다.