Question: Write an O(1) function that takes a single integer, n, as its argument and returns the sum of all integers from 0 through n. (Note:

Write an O(1) function that takes a single integer, n, as its argument and returns the sum of all integers from 0 through n. (Note: n could be negative. So, for example, sum(-3) should return 0 + -1 + -2 + -3, which is -6.) Credit will only be awarded if your function is O(1).

int fastSum(int n)

{

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!