Skip to content

Commit 1408ac0

Browse files
authored
Update NComplexity.java
1 parent 4d382c0 commit 1408ac0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chapter01introduction/NComplexity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void main(String[] args) {
2323
}
2424
public static int orderN(int n){
2525
int count = 0;
26-
for (int i = 1; i<n;){
26+
for (int i = 1; i < n; ){
2727
count ++;
2828
i = i+1;
2929
}

0 commit comments

Comments
 (0)