=== Paralyse Nested Loops ===
for(int i = 0; i < numberoflines; i++){ [[Image:filename|600px]]
std::getline(fin, line);
std::istringstream iss{line};
while(std::getline(iss, temp, ' '))
{
If(input1.compare(temp)==0){ matches ++; } }
}
}
I think by paralysing the nested loop above I should be able to