I've been working on this assignment for my programming class, but my last module is giving me issues. My brain is a bit fried and I just don't see whats wrong. Any help please?
I didn't check anything else yet but the first thing I see is if(aEqual = false)
Change that to ==.
It also seems like you are missing a closing bracket for the matchNums function. (Which isn't returning a value so shouldn't be marked as int).
Your results function is checking against the local variable aEqual which was never given a value, it should be based on how many matches were found.
Finally your matching numbers loop seems to count the same numbers every time (so if 1 is in both sets, it will be counted 5 times). You will need to rewrite that somehow so it only counts it once per appearance.