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:
-
Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
-
For bug reports and feature requests, open issues.
-
For direct and quick help, you can email me.
How to contribute
Have an idea? Found a bug? See how to contribute.
Thanks!
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
traversal-1.0.1.tar.gz
(2.3 kB
view details)
File details
Details for the file traversal-1.0.1.tar.gz
.
File metadata
- Download URL: traversal-1.0.1.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.1.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb89350df5c364ace1284b2837f74da85df9d3d020f0e77cc459456e14f6673d |
|
MD5 | cec94fc0241a0b41c54f2bab85043b8e |
|
BLAKE2b-256 | a528a679d0086ab6139f4b4abab9bc0b6d9c4ff74ef3b33dd3d593d4b0569946 |