category-wise-problems

contains category wise problems(data structures, competitive) of popular platforms.

View the Project on GitHub mayankdutta/category-wise-problems

Number of Distinct Islands

Prerequisite
Hint - make the basic flood fill first - then keep storing the coordinate you visit as a vector - and then vector as a set. - in order to maintain the uniqueness of the coordinate. - ofcourse the answer is the size of the set.