Open
String Comparision
3
Problem Description - https://codeforces.com/contest/1288/problem/B
Add a description, image, and links to the graphs-algorithms topic page so that developers can more easily learn about it.
To associate your repository with the graphs-algorithms topic, visit your repo's landing page and select "manage topics."
Related Issue
(#1105)
Proposed Changes
Added a file comparing two strings .
Most string comparison algorithms compare the strings character by character. C++ provides us some built in operators like == and != to compare strings along with strcmp and compare functions.