-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49f0bc8
commit b32bc03
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity >=0.5.0 <0.9.0; | ||
|
||
contract Day3 { | ||
//Create a function sort(array, length of array) . This sort() will take two arguments - a dynamic uint type array and length of the array. | ||
function sort(int256[] memory array, uint256 size) | ||
public | ||
pure | ||
returns (int256[] memory) | ||
|
||
{ | ||
//The sort() will sort the array elements in ascending order. | ||
for (uint256 step = 0; step < size - 1; ++step) { | ||
int256 swapped = 0; | ||
|
||
for (uint256 i = 0; i < size - step - 1; ++i) { | ||
if (array[i] > array[i + 1]) { | ||
int256 temp; | ||
temp = array[i]; | ||
array[i] = array[i + 1]; | ||
array[i + 1] = temp; | ||
|
||
swapped = 1; | ||
} | ||
} | ||
|
||
if (swapped == 0) { | ||
break; | ||
} | ||
} | ||
return array; | ||
} | ||
} |