Merge pull request #498 from seeplusplus/main

fix(arc1): index mod should equal thread count
pull/499/head
fmoko 4 years ago committed by GitHub
commit 66ec916b3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,7 @@ fn main() {
let mut sum = 0;
while i < child_numbers.len() {
sum += child_numbers[i];
i += 5;
i += 8;
}
println!("Sum of offset {} is {}", offset, sum);
}));

Loading…
Cancel
Save