首页 > 其他 > 详细

[LeetCode] Magic Squares In Grid 网格中的神奇正方形

时间:2019-02-20 00:10:04      阅读:154      评论:0      收藏:0      [点我收藏+]

 

A 3 x 3 magic square is a 3 x 3 grid filled with distinct numbers from 1 to 9 such that each row, column, and both diagonals all have the same sum.

Given an grid of integers, how many 3 x 3 "magic square" subgrids are there?  (Each subgrid is contiguous).

 

Example 1:

Input: [[4,3,8,4],
        [9,5,1,9],
        [2,7,6,2]]
Output: 1
Explanation: 
The following subgrid is a 3 x 3 magic square:
438
951
276

while this one is not:
384
519
762

In total, there is only one magic square inside the given grid.

Note:

  1. 1 <= grid.length <= 10
  2. 1 <= grid[0].length <= 10
  3. 0 <= grid[i][j] <= 15
 

s

 

参考资料:

https://leetcode.com/problems/magic-squares-in-grid/

 

[LeetCode] Magic Squares In Grid 网格中的神奇正方形

原文:https://www.cnblogs.com/grandyang/p/10404157.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!