+ 1
Issue with R course ( Can't validate projects)
When i finish a project, in the R course, it is not validated. Am I the only one with this problem ?
6 ответов
+ 1
I'm having the same problem you are, but I noticed that on the mobile app everything is good, and that if I go to my list of certificates on the web it's available.
+ 3
Tabi Mehdi
What and where and which project
+ 2
What do you mean by "can't validate"? Do you mean your codes fails the tests?
+ 1
Tabi Mehdi
Your logic is correct there should not be error.
+ 1
Tabi Mehdi
Try this one:
input <- readLines('stdin')
x <- as.integer(input[1])
y <- as.integer(input[2])
z <- as.integer(input[3])
print(max(x, y, z))
0
I did all the the project from the R course and i had the green message for each project. But in the main page (of R course), it is like i did none. For exemple in the first project (The greatest number), this my code :
input <- readLines('stdin')
x <- as.integer(input[1])
y <- as.integer(input[2])
z <- as.integer(input[3])
print(max(x,y,z))
When I run it, I get the green message but in the main page it's stay blue with the 8/9. My answer is not recorded i don't know why.
It is the same for all the project of the R course.