code/unclassified/src/biggest_suffix/readme.md
Your personal library of every algorithm and data structure code that you will ever encounter
The aim is to find the biggest suffix of two strings where the strings are taken as input from the user.
After taking both the strings as input we find the length of the smaller string because we only need to compare that many characters in both the strings. After finding the length of the smaller string we start traversing from end of both the strings and check if they are same. If yes, we increase the counter. Else, we break the loop and print the string traversed so far.
Few examples are: