Skip to main content

Library to enumerate all natural number lists with a target sum.

Project description

Library to enumerate all natural number lists with a target sum.

PyPI version and link.

Purpose

This library allows programmers to create a generator for all the lists of natural numbers that add up to a target sum.

Package Installation and Usage

The package is available on PyPI:

python -m pip install summations

The library can be imported in the usual way:

import summations
from summations import summations

Testing

The library comes with a number of tests:

nosetests

Examples

An example of usage is provided below:

>>> from summations import summations
>>> sorted(list(sum_len(5, 3)))
[(0, 0, 5), (0, 1, 4), (0, 2, 3), (0, 3, 2), (0, 4, 1), (0, 5, 0),
 (1, 0, 4), (1, 1, 3), (1, 2, 2), (1, 3, 1), (1, 4, 0), (2, 0, 3),
 (2, 1, 2), (2, 2, 1), (2, 3, 0), (3, 0, 2), (3, 1, 1), (3, 2, 0),
 (4, 0, 1), (4, 1, 0), (5, 0, 0)]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

summations-0.0.9.0.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

summations-0.0.9.0-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page