mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
1 year ago
|
## Wedding
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Create a file `Wedding.java`.
|
||
|
|
||
|
Write a function `createCouple` that returns a map of name which associates randomly a name from the first list to a name of the second list.
|
||
|
If the lists have different size, some names from the bigger list will not be ignored.
|
||
|
|
||
|
### Expected Functions
|
||
|
|
||
|
```java
|
||
|
import java.util.Set;
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class Wedding {
|
||
|
public static Map<String, String> createCouple(Set<String> first, Set<String> second) {
|
||
|
// your code here
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible ExerciseRunner.java to test your function :
|
||
|
|
||
|
```java
|
||
|
import java.util.Set;
|
||
|
|
||
|
public class ExerciseRunner {
|
||
|
|
||
|
public static void main(String[] args) {
|
||
|
System.out.println(Wedding.createCouple(Set.of("Pikachu", "Dracaufeu", "Tortank"), Set.of("Legolas", "Aragorn", "Gimli")));
|
||
|
}
|
||
|
}
|
||
|
```
|
||
|
|
||
|
and its output :
|
||
|
|
||
|
```shell
|
||
|
$ javac *.java -d build
|
||
|
$ java -cp build ExerciseRunner
|
||
|
{Pikachu=Legolas, Tortank=Gimli, Dracaufeu=Aragorn}
|
||
|
$
|
||
|
```
|
||
|
|
||
|
### Notions
|
||
|
|
||
|
[Set](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/List.html)
|
||
|
[Map](https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/util/Map.html)
|