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 hashes)