We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Algorithms
- Warmup
- Simple Array Sum
- Discussions
Simple Array Sum
Simple Array Sum
Sort by
recency
|
3396 Discussions
|
Please Login in order to post a comment
Here is my c++ solution, you can watch the explanation here : https://youtu.be/b7KAvErmVIw
It's my solution in C++ but it's not working don't know why
int simpleArraySum(vector ar) { int ans = 0; int size = sizeof(ar) / sizeof(ar[0]); for(int i=0; i
here is my python code for the given problem
solved
solved