-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nomes repetidos.java
102 lines (90 loc) · 2.97 KB
/
Nomes repetidos.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
import java.io.BufferedWriter;
import java.io.FileWriter;
class ImplementedList {
protected String[] nomes;
private int quantidade;
private int max;
public ImplementedList(){
this.max = 10;
this.nomes = new String[this.max];
this.quantidade = 0;
}
public int getQuantidade(){
return this.quantidade;
}
public void setQuantidade(){
this.quantidade++;
}
public int getMax(){
return this.max;
}
public void setMax(){
this.max++;
}
}
class Result {
static ImplementedList lista = new ImplementedList();
public static boolean isEmpty(){
return lista.getQuantidade() == 0;
}
public static boolean isFull(){
return lista.getQuantidade() == lista.getMax()-1;
}
public static boolean consultar(String nom){
if(isEmpty()){
return false;
}else{
boolean r = true;
String[] nomeInserido = nom.split(" ",0);
for(int j=0;j<nomeInserido.length;j++){
if(!lista.nomes[lista.getQuantidade()-1].toLowerCase().contains(nomeInserido[j].toLowerCase())){
System.out.println(lista.nomes[lista.getQuantidade()-1] + "=" + nomeInserido[j]);
r = false;
break;
}
}
return r;
}
}
public static void adicionar(String nom){
if(!consultar(nom)){
if(isFull()){
lista.setMax();
String temp[] = new String[lista.getMax()];
for(int i=0;i<lista.getQuantidade();i++){
temp[i] = lista.nomes[i];
}
lista.nomes = temp;
}
lista.nomes[lista.getQuantidade()] = nom;
lista.setQuantidade();
}
}
public static int attendance(String value) {
String[] destrincharNomes = value.split("\n",0);
for(int i=0;i<destrincharNomes.length;i++){
adicionar(destrincharNomes[i]);
}
return lista.getQuantidade();
}
}
public class Solution {
public static void main(String[] args) throws IOException {
Scanner scanner = new Scanner(new InputStreamReader(System.in));
BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(System.getenv("OUTPUT_PATH")));
String input = "";
do {
input += scanner.nextLine() + "\n";
}while (scanner.hasNext());
int result = Result.attendance(input.trim());
System.out.println(result);
bufferedWriter.write(String.format("%d",result));
bufferedWriter.newLine();
scanner.close();
bufferedWriter.close();
}
}