We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
C
C(c(1,3,9)) returns 1. That's because of ifelse. If I were to replace that with a proper if statement, it would return c(1,3,9).
C(c(1,3,9))
1
ifelse
if
c(1,3,9)
Would that be correct, or would we rather get 139?
139
The text was updated successfully, but these errors were encountered:
#5
Sorry, something went wrong.
No branches or pull requests
C(c(1,3,9))
returns1
. That's because ofifelse
. If I were to replace that with a properif
statement, it would returnc(1,3,9)
.Would that be correct, or would we rather get
139
?The text was updated successfully, but these errors were encountered: