fork download
  1. import java.io.IOException;
  2. import java.io.InputStreamReader;
  3. import java.util.Set;
  4. import java.util.TreeSet;
  5. import java.io.BufferedReader;
  6.  
  7. public class Main {
  8. private static boolean isLetter(char c) {
  9. return ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z');
  10. }
  11.  
  12. private static void parseToWords(BufferedReader reader, Set<String> uniqueWords) throws IOException {
  13. StringBuilder currentWord = new StringBuilder();
  14. boolean wasLetter = false;
  15. while (reader.ready()) {
  16. char c = (char)reader.read();
  17. if (isLetter(c)) {
  18. currentWord.append(c);
  19. wasLetter = true;
  20. } else if (wasLetter) {
  21. uniqueWords.add(currentWord.toString());
  22. currentWord = new StringBuilder();
  23. wasLetter = false;
  24. }
  25. }
  26. if (currentWord.length() != 0) {
  27. uniqueWords.add(currentWord.toString());
  28. }
  29. }
  30.  
  31. public static void main(String[] args) throws IOException {
  32. Set<String> uniqueWords = new TreeSet<>();
  33. parseToWords(reader, uniqueWords);
  34. for (String currentWord : uniqueWords) {
  35. System.out.println(currentWord);
  36. }
  37. }
  38. }
Success #stdin #stdout 0.07s 54816KB
stdin
mersi pentru lista de instructiuni
e de ajutor
mersi
stdout
ajutor
de
e
instructiuni
lista
mersi
pentru