mirror of https://github.com/embarklabs/sggc.git
22 lines
525 B
Solidity
22 lines
525 B
Solidity
|
/**
|
||
|
* This file is part of the 1st Solidity Gas Golfing Contest.
|
||
|
*
|
||
|
* This work is licensed under Creative Commons Attribution ShareAlike 3.0.
|
||
|
* https://creativecommons.org/licenses/by-sa/3.0/
|
||
|
*/
|
||
|
|
||
|
pragma solidity 0.4.24;
|
||
|
|
||
|
contract Sort {
|
||
|
/**
|
||
|
* @dev Sorts a list of integers in ascending order.
|
||
|
*
|
||
|
* The input list may be of any length.
|
||
|
*
|
||
|
* @param input The list of integers to sort.
|
||
|
* @return The sorted list.
|
||
|
*/
|
||
|
function sort(uint[] input) public pure returns(uint[]) {
|
||
|
}
|
||
|
}
|