File: root - text - article - 2019 - 11 - spiral-traversal-of-grid.txt
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 535 Views, 21740 Search Bots | 90 Words
| Browse | Archive
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Category: Computing | 535 Views, 21740 Search Bots | 90 Words
| Browse | Archive
Hi, here's your problem today. This problem was recently asked by Amazon:
By the way, check out our NEW project AlgoPro (http://algopro.com) for over 60+ video coding sessions with ex-Google/ex-Facebook engineers.
You are given a 2D array of integers. Print out the clockwise spiral traversal of the matrix.
Example:
The clockwise spiral traversal of this array is:
Here is a starting point:
Tags: 每日算法题, 算法, 数据结构, 面试题, Daily Interview Problem, Data Structures and Algorithms, Computer Programming, Python, | English | Home Page | Cateogry: Computing | 535 Views, 21740 Search Bots | 90 Words By the way, check out our NEW project AlgoPro (http://algopro.com) for over 60+ video coding sessions with ex-Google/ex-Facebook engineers.
You are given a 2D array of integers. Print out the clockwise spiral traversal of the matrix.
Example:
grid = [[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15],
[16, 17, 18, 19, 20]]
The clockwise spiral traversal of this array is:
1, 2, 3, 4, 5, 10, 15, 20, 19, 18, 17, 16, 11, 6, 7, 8, 9, 14, 13, 12
Here is a starting point:
def matrix_spiral_print(M):
# Fill this in.
grid = [[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15],
[16, 17, 18, 19, 20]]
matrix_spiral_print(grid)
# 1 2 3 4 5 10 15 20 19 18 17 16 11 6 7 8 9 14 13 12
Related Articles
- [Daily Problem] Witness of The Tall People
- Top K Frequent words
- Generate All IP Addresses
- Algorithm Interview: No Adjacent Repeating Characters
- Daily Interview Problem: Minimum Removals for Valid Parenthesis
- Daily Interview Problem: Validate Binary Search Tree
- Staying on a Chess Board
- Binary Tree Level with Minimum Sum
- [Daily Problem] Angles of a Clock
- Sort a Partially Sorted List
©2006~2024 SteakOverCooked - 0.00694 Seconds(s) - 2901.971 KB/s - 14 Online Memory: 494.55 KB
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
How to Cook a Perfect Steak? | <meta name="robots" content="index, follow">
18:54:01 up 13 days, 18:33, 2 users, load average: 0.98, 0.86, 0.73 - Server PHP Version: 7.4.33
Comments (0)
Read & Write - Normal - Mini - Post - All Comments - Statistics
Be the first one to comment this page !