-
Notifications
You must be signed in to change notification settings - Fork 0
/
0_que_la_fete_commence
51 lines (32 loc) · 1.56 KB
/
0_que_la_fete_commence
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
English version available below
0 - Que la fête commence !
"Combattants, préparez-vous !"
Le hurlement du garde vous réveille en sursaut. Vous savez que l'heure de la Battle Royale approche, mais vous êtes prêt.
"Rangez-vous en file, et donnez moi votre identifiant pour vous engager dans la bataille"
Pour commencer la Battle Royale, écrivez une fonction qui prend en entrée un identifiant numérique ; et retourne la réponse au garde, de la forme "Enter Battle Royale with ID: *identifiant*"
Entrée
L'entrée est une chaîne de caractères représentant votre identifiant à 9 chiffres.
Sortie
Votre fonction doit retourner une chaîne de caractère au format Enter Battle Royale with ID: 123456789.
Exemples
Entrée : 123456789
Sortie : Enter Battle Royale with ID: 123456789
Entrée : 663307073
Sortie : Enter Battle Royale with ID: 663307073
.
.
.
0 - Let the pary begin!
"Fighters, get ready!"
The scream of the guard wakes you with a start. You know it's time for the Battle Royale, but you're ready.
"Stand at attention, and give me your ID to join the battle."
To start the Battle Royale, write a function that takes a numeric identifier as input; and returns the answer to the guard, in the form "Enter Battle Royale with ID: *identifier*".
Input
The input user_id is a string of characters representing your 9-digit ID.
Output
Your function must return a string in the format Enter Battle Royale with ID: 123456789.
Examples
Input : 123456789
Output : Enter Battle Royale with ID: 123456789
Input : 663307073
Output : Enter Battle Royale with ID: 663307073