Solution of 'FIGUREFUL' (SPOJ)
Hey everyone! Here's my solution of the question- 'FIGUREFUL' from SPOJ. Do comment your suggestions for my blogs and code. TY and Happy coding! question link: https://www.spoj.com/problems/ACMCEG2B/ #include <bits/stdc++.h> using namespace std ; int main () { map < pair < int , int >, string > code ; int n , q ; cin >> n ; for ( int i = 0 ; i < n ; i ++){ int x , y ; string s ; cin >> x >> y >> s ; code [ { x , y } ] = s ; } cin >> q ; string name [ q ]; for ( in...