
Problem Solving/BaekJoon
[BOJ/백준] 25099 - Anagram
25099번: Anagram The first line contains $n$, the length of the list. This is followed by $n$ lines, each containing one word. www.acmicpc.net Sort + Map 제목 Anagram 조건 시간 제한 : 4 초 메모리 제한 : 256 MB 문제 Two words are anagrams if the letters of the first word can be reordered to obtain the second one. An instance of anagrams is the pair “listen” and “silent”. You are given a list of words, each word c..