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.
 
 
 
 
 
 
Abdelilah Khossan 78e9c1846c
CON-1881-Review-java-piscine-subjects-Fix-grammar-and-semantic-issues (#2102)
10 months ago
..
README.md CON-1881-Review-java-piscine-subjects-Fix-grammar-and-semantic-issues (#2102) 10 months ago

README.md

Wedding

Instructions

Create a file Wedding.java.

Write a function createCouple that returns a map of names which associates randomly a name from the first list to a name of the second list.
If the lists have different sizes, some names from the bigger list will be ignored.

Expected Functions

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 :

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 :

$ javac *.java -d build
$ java -cp build ExerciseRunner
{Pikachu=Legolas, Tortank=Gimli, Dracaufeu=Aragorn}
$

Notions

Set
Map