sure i will help you
hey im new here can you teach me how to code a 3d world
i really need help im new to this
I copied to exact same code but it says it does not work );
in Python, indentation is important. If youāre new to programming, I suggest taking an online tutorial first.
Did you copy it in the right spot ?
Iāve solved this a bunch of times and the quest map isnāt updating. It wouldnāt give me the exp or the achievements, it says in the progress 100% but in the map It says āComplete previous quest to know more about thisā
This is happening to me too, I just want to continue with the quest map but it isnāt updating :ā) I read somewhere that it might take up to a couple of hours for the thing to update, but Iāve been checking in since yesterday.
I have completed 4 puzzles yesterday. Till now I havenāt get XP or any achievementsā¦
Same here, just completed, the āOnboardingā quest for Python 3 four times and got a confirmation upon submission that I got 100% but I canāt proceed to the next quest.
Sorry about the issue @NoelDiaz @Doors @fabskerle @fish866, itās fixed now. See https://www.codingame.com/forum/t/quest-map-new-home-page-feedbacks-bugs/185603/66
so iam stuck in this quesiton where the input would cCnNoO and the out put would e 1 3 5 like how i have to guess but nothing comes to mind please help
Itās just a tutorial to show what an actual puzzle looks like. Thereās nothing to do, just copy/paste the given code.
A puzzle would usually look like this : you are given inputs (the part of the code that manages these inputs will be written already, do not touch it at first - you can do it later when youāre more familiar with it).
Then you have to perform a task with these inputs and output something.
Sometimes you have to get inputs and output something only once, sometimes you will have to repeat the process (in this case the whole input/output thing is made in an infinite loop that will be coded alreay, do not touch it either).
Donāt worry about the loop being seemingly infinite, your output is actually given to a ārefereeā that will stop it when it considers that the puzzle is over.
i am new wit code i yous c++ i now not 1 tig i bout code
Groovy often ends up in timeout with the code providedā¦
any way to fix it?
ps: using ternary operator seems to have made it faster.
println dist1 < dist2 ? enemy1 : enemy2
when I played this with Dart, this provided code did not work.
String enemy1 = stdin.readLineSync();
int dist1 = int.parse(stdin.readLineSync());
String enemy2 = stdin.readLineSync();
int dist2 = int.parse(stdin.readLineSync());
error output:
Answer.dart:7:27: Error: A value of type āString?ā canāt be assigned to a variable of type āStringā because āString?ā is nullable and āStringā isnāt.
String enemy1 = stdin.readLineSync();
adding a !
(null check) after the readLineSync()
solved the issue:
String enemy1 = stdin.readLineSync()!;
int dist1 = int.parse(stdin.readLineSync()!);
String enemy2 = stdin.readLineSync()!;
int dist2 = int.parse(stdin.readLineSync()!);
or, pressing the āResetā button and then replacing the output would work, too.
could you fix it? I think itās hard for the beginners to find outā¦
hey is there a way for me to code my own game.
Hi @snara !
As i said in another topic (Groovy gets timeouts in every clash now - #17 by Jp82),
ā Groovy now works for me in both IDE and Validators ā¦
=> maybe you can retry now your submissions and get Validators succeed ?
Have fun with Groovy too ā¦ bye !
add begginer courses because i want to reccomend this to my class but they dont know anyhing about coding unless its coding with blocks.
Hi @eden.adamson : Welcome to the Forum !
CodinGame is a wonderful site for programmers, beginning or more experienced ā¦
ā If you go in the Menu to āActivities ā Learnā, you can access to a wide variety of tuto in all the languages supported by CodinGame, on many topics, about any specific, etcā¦
ā With an account in CodinGame, you can (freely) access to the https://tech.io/ platform, dedicated to share help between more experienced programmers and beginners :
=> iām sure all your schoolā friends will find an interesting subject or raison to learn Programming !
You can talk about easy (or medium) puzzles, ClashOfCode, EscapeGames and the next CodinGame Fall Challenge ā¦ maybe nearly about October or November ā¦
Have sun, fun, and Coding pleasures @ CodinGame ā¦