Skip to content

Commit

Permalink
API Collection Set
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-emarquez committed May 14, 2021
1 parent 69109ff commit 8853ecb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions APIColeccion_II/src/test/TestColecciones.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class TestColecciones {

public static void main(String[] args) {
/*List : conm orden*/
/*List : con orden*/
List miLista = new ArrayList();
miLista.add("Luness");
miLista.add("Martess");
Expand All @@ -15,7 +15,7 @@ public static void main(String[] args) {
miLista.add("Vierness");
// imprimir(miLista);

/* Set: sin orden*/
/* Set: sin orden, sin duplicados*/
Set miSet = new HashSet();
miSet.add("Lunes");
miSet.add("Martes");
Expand Down

0 comments on commit 8853ecb

Please sign in to comment.