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.
 
 
 
 
 
 
davhojt 1cf114eb85
docs(java): move piscine exercises from subjects/java-piscine -> subjects/java/piscine
1 year ago
..
README.md docs(java): move piscine exercises from subjects/java-piscine -> subjects/java/piscine 1 year ago

README.md

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

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