segun mi profesor su comlpejidad no es O(N2), akquien me puede decir porque.

La complejidad temporal del siguiente código es:

public static int metodo2(int n) {

int s = 0;

for (int i = 0; i < 5; i++) {

for (int j = 0; j < n; j++){

s ++;

}

}

return s;

}

Respuestas

Respuesta dada por: haydeechiroquepei7t2
1

Respuesta:

es 2

Explicación:

Respuesta dada por: calebedmond
2

Respuesta:

muy bien te felicitó muchísimo

Preguntas similares