Online -Zeitkomplexität berechnen
public void calculate(int n) {
int steps = 0;
for(int i = o; i < n ; i++){
for(int j = 0; j < n; j++){
steps++;
}
}
System.out.println(steps);
}
Besfort Sherifi