0

Can anyone tell where my code is wrong? The 'sum in range' problem in R programming course.

input <- readLines('stdin') x <- as.integer(input[1]) y <- as.integer(input[2]) rangeSum <- function(x,y) { i <- 0 for (i in x:y) { i <- i+1 } return(i) } result <- rangeSum(x, y) print(result)

7th Sep 2021, 5:20 PM
Pradnya Meshram
Pradnya Meshram - avatar
14 odpowiedzi
+ 3
Pradnya Meshram declare variable with another name like sum instead of i because there is already a same variable in for loop so do this: sum <- 0 for (i in x:y) { sum <- sum + i } return (sum) You have to add number between x to y so there should not be +1 For example : 5 - 9 so it should be 5 + 6 + 7 + 8 + 9
7th Sep 2021, 5:32 PM
A͢J
A͢J - avatar
+ 1
Thank you, this helped a lot. A͢J - S͟o͟l͟o͟H͟e͟l͟p͟e͟r͟
7th Sep 2021, 5:43 PM
Pradnya Meshram
Pradnya Meshram - avatar
+ 1
A͢J - S͟o͟l͟o͟H͟e͟l͟p͟e͟r͟ Just want to add that "sum" is not an ideal variable name because there's also a built-in "sum()" function. (Actually you could use sum() directly instead of loop, though I think the task asks for a loop)
7th Sep 2021, 6:12 PM
Lisa
Lisa - avatar
+ 1
Lisa Actually we can use function or method name as a variable, program will not give any error. When we do () with name then it is considered as a function and without () it's a variable.
7th Sep 2021, 6:20 PM
A͢J
A͢J - avatar
+ 1
Yes, at least it doesn't overwrite in R :)
7th Sep 2021, 6:25 PM
Lisa
Lisa - avatar
+ 1
Rolf Straub Could you please link the complete code?
9th Sep 2021, 10:48 AM
Lisa
Lisa - avatar
+ 1
I copied the code to playground and did get any errors. Sometimes there's an error that sololearn doesn't execute it correctly (for me it helps to shut and restart the app) If that doesn't help either, you can try to reset the code (click on the 3 dots in the top right) and re-write the solution
9th Sep 2021, 11:58 AM
Lisa
Lisa - avatar
+ 1
I did that already. Danke.
9th Sep 2021, 12:01 PM
Rolf Straub
Rolf Straub - avatar
0
Lisa Neither in R nor in other programming languages. Even python also accept inbuilt function as a variable. As we know that function definition start with def in python so if we just write sum it doesn't mean that it is a function, it's a simple variable. You can try this in python sum = sum([1, 2, 3, 4]) print (sum) Edited : But remember we cannot use sum function again after defining variable sum.
7th Sep 2021, 6:33 PM
A͢J
A͢J - avatar
0
Does anbody else have this error? " }" unexpected input There must be some invisible token(s) somewhere in this part of the code. Best is to delete the line(s) and rewrite the code.
9th Sep 2021, 10:25 AM
Rolf Straub
Rolf Straub - avatar
0
The Code is the ordinary code without any visible mistakes: #define the function rangeSum <- function(a,b) { summe <- 0 for(z in a:b) { summe <- summe+z } return(summe) } result <- rangeSum(x, y) print(result)
9th Sep 2021, 11:40 AM
Rolf Straub
Rolf Straub - avatar
0
Somewhere in this sequence was an unexpected token: } return(summe) }
9th Sep 2021, 11:44 AM
Rolf Straub
Rolf Straub - avatar
0
Mihai Apostol I am saying in this case: code 1: li = [1, 2, 3, 4] sum = 0 for i in li: sum = sum + i print (sum) ------------ code 2: li1 = [1, 2, 3, 4] print (sum(li1)) ---------- Not in that case which you are talking.
9th Sep 2021, 12:30 PM
A͢J
A͢J - avatar
- 1
A͢J - S͟o͟l͟o͟H͟e͟l͟p͟e͟r͟ You are wrong. Try to use again sum as function after those two lines. You can't...
7th Sep 2021, 11:30 PM
Mihai Apostol
Mihai Apostol - avatar