In java original code there is a problem with the TEST 3.
That is because the original code force the program to read a new line, but the end of file has reached.
-> Change the line
String TEMPS = in.nextLine();
-> For these ones:
String TEMPS = “”;
if(in.hasNext())
TEMPS = in.nextLine();
This check if the document has another line to read before the program attemp to read this line. Futhermore you have to check if N (the number of data) is 0, in this case the minimun is cero.
I try to run my code(Java) with test when inputs contains only negative numbers in the IDE all works good(-7), but when I sent it my result only 71% without a test only negative numbers. Can someone help me?
Bonjour, je crois qu’il y a une erreur en JS, lors d’un print avec une valeur > 2 charactère ça ne marche pas (ça passe les tests simple mais les pas soumission du genre -10 -10 devrait retourner -10 et -273 doit retourner -273 mais après avoir fait le simple test
var n = -10;
print( n );
Je vois juste “-” dans la console.
Une mauvaise manip de ma part p-e ?
Yes, it does. But the problem is, that for example my code prints 0 if there’s no temperatures. But it doesn’t score after validation. I’m not that smart, so maybe I missed something, that’s why I posted here.
You can’t solve this puzzle with simply min and max. In your current code, you’re considering that temperatures are either all positive or all negative, which is not the case in every tests.
Bonsoir,
Je pense qu il y a un probleme avec ce puzzle
Il est dit par exemple pour le premier test que les donnees en entree sont
5
1 -2 -8 4 5
Pourtant quand je determine le minimum des valeurs en parcourant le tableau,j obtiens 32
D autre part ,en sortie j obtiens ‘’’’ Found:3’’’’
Je ne comprends pas,aidez moi svp
Pourquoi 32 et pourquoi en sortie 32 est tronque?
Merci d avance.