Skip to main content

Famous Matrix Traversals

Project description

Matrix Traversals

Famous Matrix Traversals

Install

$ pip install traversal

Usage

import traversal

matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

traversal.zigzag(3, 3, matrix)
#=> [[1, 2, 4], [7, 5, 3], [6, 8, 9]]

traversal.spiral(3, 3, matrix)
#=> [[1, 2, 3], [6, 9, 8], [7, 4, 5]]

traversal.row(3, 3, matrix)
#=> [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

traversal.column(3, 3, matrix)
#=> [[1, 4, 7], [2, 5, 8], [3, 6, 9]]

Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.

  2. For bug reports and feature requests, open issues.

  3. For direct and quick help, you can email me.

How to contribute

Have an idea? Found a bug? See how to contribute.

Thanks!

License

MIT

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

traversal-0.0.9.tar.gz (2.1 kB view hashes)

Uploaded Source

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