summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2014-11-20 18:39:54 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2014-11-20 18:39:54 +0100
commit0229c16365e5d849857b30ef6bd6634f89913a4b (patch)
treebb5ed390167373a7aa34d4b45eccbc7de146cac1 /src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java
parent242dc8ea6486a9d0b664f0a0dfe39596846a0456 (diff)
downloadJava1-0229c16365e5d849857b30ef6bd6634f89913a4b.tar.gz
Java1-0229c16365e5d849857b30ef6bd6634f89913a4b.zip
Assignment No.8 implemented non recursive FaB
Diffstat (limited to 'src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java')
-rw-r--r--src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java b/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java
deleted file mode 100644
index 279345d..0000000
--- a/src/de/fhswf/in/inf/java1/aufgabe8/LottoZiehung.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- *
- */
-package de.fhswf.in.inf.java1.aufgabe8;
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * TODO Add comment here
- *
- * @author $Author: $
- * @version $Revision: $, $Date: $ UTC
- */
-public final class LottoZiehung
-{
-
- /**
- * TODO Add constructor comment here
- *
- */
- private LottoZiehung()
- {
- // TODO Auto-generated constructor stub
- }
-
- /**
- * TODO Add method comment here
- *
- * @param args
- * Command line arguments.
- */
- public static void main(String[] args)
- {
- // TODO Auto-generated method stub
-
- List<Integer> lottoZahlen = new ArrayList<>(49);
-
- for (int i = 1; i <= 49; i++)
- {
- lottoZahlen.add(i);
- }
-
- List<Integer> ziehung = FloydAndBentley.sample(lottoZahlen, 7);
-
- Integer Sonderzahl = ziehung.get(6);
-
- ziehung.remove(6);
-
- ziehung.sort(null);
-
- System.out.println(ziehung + " SonderZahl: " + Sonderzahl);
-
- }
-
-}