I have two multi-dimension arrays
num[line][col] = {
{ '\0', '1', '\0', '\0', '\0' },
{ '\0', '\0', '\0', '3', '\0' },
};
solution[line][col] = {
{ '5', '1', '3', '4', '2' },
{ '4', '2', '5', '3', '1' },};
- How do I write in num? 2.How do I compare num and solution? Thank you so much