Detect HTML Tags

  • + 0 comments

    java solution

    import java.io.*;
    import java.util.*;
    import java.util.regex.Pattern;
    import java.util.regex.Matcher;
    
    public class Solution {
    
        public static void main(String[] args) {
            Scanner scanner = new Scanner(System.in);
            int n = Integer.parseInt(scanner.nextLine());
            Pattern pattern = Pattern.compile("< *(\\w+)[^>]*>");
            SortedSet<String> ans = new TreeSet<>();
            for (int i = 0; i < n; i++) {
                Matcher matcher = pattern.matcher(scanner.nextLine());
                while (matcher.find()) {
                    ans.add(matcher.group(1));
                }
            }
            System.out.println(String.join(";", ans));
        }
    }