Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitscript authored Oct 1, 2022
1 parent 13896b9 commit 45c2aa8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions 18Day-SumOfArray.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0 <0.9.0;

contract Day6 {
//Create a function sumarray(array, length of array) .This sumarray() will take two arguments - a dynamic int type array and length of the array.
function sumarray(int256[] memory arr, uint256 size)
public
pure
returns (int256)
{
int256 sum = 0;
for (uint256 i = 0; i < size; i++) {
sum += arr[i];
}
return sum;
}
}

0 comments on commit 45c2aa8

Please sign in to comment.