Sequence comparinglooping array A 4 times would return it to its original state. original 0 1 2 3 4 5 6 7 1st loop 7 5...
Sequence comparingIt should basically tell me how many times I would have to loop array B to get back to A. Or I guess...
Sequence comparingThis is the small version with preset arrays. [code] #include <iostream> #include <string> #include ...
Sequence comparing[code]//Monge's Shuffle #include <iostream> #include <iomanip> #include <cmath> using namespace std...
Sequence comparingSo I changed it to [code] int A[8] = {0,1,2,3,4,5,6,7} int B[8] = {7,5,3,1,0,2,4,6} int same = 0;...