I've got something like 400 lines of code at this point, and I realize that not too many people will be inclined to look at it. Thankfully, the majority of it works swell, and I only need part of it examined. I realize that my use of vectors is not right, and i would love for someone to take a peek at my code to show me what I'm doing wrong. I can provide some guidance about which parts should be looked at, as the code is incomplete and really won't make sense yet to anyone but myself. I'll provide an attachment for anyone kind enough to look.
Functions that need some help are detailed as follows:
1. The return of the RecordValues function, which is called by the FinishBoard function. Currently the function has no return; however, I realize that this
vector<int> sureValues = RecordValues(FinalBoard, i, theRandom)
is inadequate.
I am curious if the CheckCell function is called properly. Additionally, I think the prototypes that have vectors as parameters need to be looked at.
The compiler is telling me that the code
if (CheckCell(sureValues, row, column) == false)
is wrong because "conversion from 'int' to non-scalar type 'std::vect<int, std::allocater<int>' requested."
Thanks for the help