No Duplicates: Difference between revisions

From programming_contest
Jump to navigation Jump to search
imported>Kmk21
Created page with "This problem asks us whether any word in the input is duplicated. Store seen words in a hashmap. Even the n^2 brute force solution will work. Category:ICPC Problems Ca..."
(No difference)

Revision as of 23:50, 1 December 2017

This problem asks us whether any word in the input is duplicated.

Store seen words in a hashmap. Even the n^2 brute force solution will work.