- Enter the first string in the variable n.
- Enter the second string in the variable m.
- Compare the two string lengths :
*if they’re different , return false. - Scan the two vector , character per character :
*if there’s one difference, return false. - Return success.
solved Given two strings of length, test if the two strings are identical [closed]