Algun cert X65651


Statement
 

pdf   zip   main.cc

html

Fes una funció amb la capçalera:

bool any(const vector<bool>& v);

que retorni cert quan algun dels elements del vector v és cert.

Entrada

La funció rep un vector de Booleans de mida qualsevol.

Sortida

La funció retorna true si algun element del vector és true. Si el vector està buit, cal retornar false.

Observació

El Jutge fa servir el següent programa principal:

int main() {
  while (getline(cin, linia)) {
    istringstream S(linia);
    vector<bool> v;
    bool b;
    while (S >> b) {
      v.push_back(b);
    }
    cout << any(v) << endl;
  }
}
Public test cases
  • Input

    0
    0 1
    1 0 1
    0 0 0 0 0
    
    1 1 1 1
    0 1 0
    1

    Output

    0
    1
    1
    0
    0
    1
    1
    1
    
  • Information
    Author
    Pau Fernández
    Language
    Catalan
    Other languages
    Spanish
    Official solutions
    Unknown. This problem is being checked.
    User solutions
    C++