fork download
  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. import java.util.Set;
  5. import java.util.TreeSet;
  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. while (reader.ready()) {
  14. String currentLine = reader.readLine();
  15. StringBuilder currentWord = new StringBuilder();
  16. boolean wasLetter = false;
  17. int lengthLine = currentLine.length();
  18. for (int i = 0; i < lengthLine; ++i) {
  19. if (isLetter(currentLine.charAt(i))) {
  20. currentWord.append(currentLine.charAt(i));
  21. wasLetter = true;
  22. } else if (wasLetter) {
  23. uniqueWords.add(currentWord.toString());
  24. currentWord = new StringBuilder();
  25. wasLetter = false;
  26. }
  27. }
  28. if (currentWord.length() != 0) {
  29. uniqueWords.add(currentWord.toString());
  30. }
  31. }
  32. }
  33.  
  34. public static void main(String[] args) throws IOException {
  35. Set<String> uniqueWords = new TreeSet<>();
  36. parseToWords(reader, uniqueWords);
  37. for (String currentWord : uniqueWords) {
  38. System.out.println(currentWord);
  39. }
  40. }
  41. }
Success #stdin #stdout 0.1s 53156KB
stdin
mersi pentru lista de instructiuni
e de ajutor
mersi
stdout
ajutor
de
e
instructiuni
lista
mersi
pentru