larger inputs

This commit is contained in:
Pagwin 2024-11-03 17:22:24 -05:00
parent 9aeef9648e
commit e86652cad3
No known key found for this signature in database
GPG key ID: 81137023740CA260
2 changed files with 1007 additions and 6 deletions

1009
main.cpp

File diff suppressed because it is too large Load diff

View file

@ -22,7 +22,7 @@ fn get_reversals_to_sort(arr: &[i32]) -> Vec<usize> {
ret
}
pub fn main() {
let vals = [12, 13, 11, 14];
let vals = include!("inp.txt"); //[12, 13, 11, 14];
let show = get_reversals_to_sort(&vals);
println!("{:?}", show);
//println!("{:?}", show);
}