paul@528 | 1 | #!/usr/bin/env python |
paul@528 | 2 | |
paul@528 | 3 | """ |
paul@528 | 4 | Iterator summary functions. |
paul@528 | 5 | |
paul@528 | 6 | Copyright (C) 2015, 2016, 2017 Paul Boddie <paul@boddie.org.uk> |
paul@528 | 7 | |
paul@528 | 8 | This program is free software; you can redistribute it and/or modify it under |
paul@528 | 9 | the terms of the GNU General Public License as published by the Free Software |
paul@528 | 10 | Foundation; either version 3 of the License, or (at your option) any later |
paul@528 | 11 | version. |
paul@528 | 12 | |
paul@528 | 13 | This program is distributed in the hope that it will be useful, but WITHOUT |
paul@528 | 14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
paul@528 | 15 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
paul@528 | 16 | details. |
paul@528 | 17 | |
paul@528 | 18 | You should have received a copy of the GNU General Public License along with |
paul@528 | 19 | this program. If not, see <http://www.gnu.org/licenses/>. |
paul@528 | 20 | """ |
paul@528 | 21 | |
paul@528 | 22 | def max(args): |
paul@528 | 23 | |
paul@528 | 24 | "Implementation of max." |
paul@528 | 25 | |
paul@528 | 26 | highest = None |
paul@528 | 27 | for arg in args: |
paul@528 | 28 | if highest is None or arg > highest: |
paul@528 | 29 | highest = arg |
paul@528 | 30 | return highest |
paul@528 | 31 | |
paul@528 | 32 | def min(args): |
paul@528 | 33 | |
paul@528 | 34 | "Implementation of min." |
paul@528 | 35 | |
paul@528 | 36 | lowest = None |
paul@528 | 37 | for arg in args: |
paul@528 | 38 | if lowest is None or arg < lowest: |
paul@528 | 39 | lowest = arg |
paul@528 | 40 | return lowest |
paul@528 | 41 | |
paul@528 | 42 | def sum(sequence, start=0): |
paul@528 | 43 | |
paul@528 | 44 | "Sum the elements in 'sequence', adding to any indicated 'start' value." |
paul@528 | 45 | |
paul@528 | 46 | total = start |
paul@528 | 47 | for i in sequence: |
paul@528 | 48 | total += i |
paul@528 | 49 | return total |
paul@528 | 50 | |
paul@528 | 51 | # vim: tabstop=4 expandtab shiftwidth=4 |