#leetcode刷题之路36-有效的数独
判断一个 9x9 的数独是否有效。只需要根据以下规则,验证已经填入的数字是否有效即可。
数字 1-9 在每一行只能出现一次。
数字 1-9 在每一列只能出现一次。
数字 1-9 在每一个以粗实线分隔的 3x3 宫内只能出现一次。
上图是一个部分填充的有效的数独。
数独部分空格内已填入了数字,空白格用 '.' 表示。
示例 1:
输入:
[
["5","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
输出: true
示例 2:
输入:
[
["8","3",".",".","7",".",".",".","."],
["6",".",".","1","9","5",".",".","."],
[".","9","8",".",".",".",".","6","."],
["8",".",".",".","6",".",".",".","3"],
["4",".",".","8",".","3",".",".","1"],
["7",".",".",".","2",".",".",".","6"],
[".","6",".",".",".",".","2","8","."],
[".",".",".","4","1","9",".",".","5"],
[".",".",".",".","8",".",".","7","9"]
]
输出: false
解释: 除了第一行的第一个数字从 5 改为 8 以外,空格内其他数字均与 示例1 相同。
但由于位于左上角的 3x3 宫内有两个 8 存在, 因此这个数独是无效的。
- #include <iostream>
- #include <vector>
- using namespace std;
- bool isValidSudoku(vector<vector<char>>& board) {
- for(int i=;i<;i++)//判断行列是否有重复
- {
- int a[]={};
- int a1[]={};
- for(int j=;j<;j++)
- {
- if(board[i][j]!='.')
- if(a[board[i][j]]==-) return false;
- else a[board[i][j]]=-;
- if(board[j][i]!='.')
- if(a1[board[j][i]]==-) return false;
- else a1[board[j][i]]=-;
- }
- }
- for(int i=;i<;i+=)//判断小的宫格
- {
- for(int j=;j<;j+=)
- {
- int a[]={};
- for(int k=i;k<i+;k++)
- {
- for(int h=j;h<j+;h++)
- {
- if(board[k][h]!='.')
- if(a[board[k][h]]==-) return false;
- else a[board[k][h]]=-;
- }
- }
- }
- }
- return true;
- }
- int main() {
- // vector<vector<char>> board={{'8', '3', '.', '.', '7', '.', '.', '.', '.'},
- // {'6', '.', '.', '1', '9', '5', '.', '.', '.'},
- // {'.', '9', '8', '.', '.', '.', '.', '6', '.'},
- // {'8', '.', '.', '.', '6', '.', '.', '.', '3'},
- // {'4', '.', '.', '8', '.', '3', '.', '.', '1'},
- // {'7', '.', '.', '.', '2', '.', '.', '.', '6'},
- // {'.', '6', '.', '.', '.', '.', '2', '8', '.'},
- // {'.', '.', '.', '4', '1', '9', '.', '.', '5'},
- // {'.', '.', '.', '.', '8', '.', '.', '7', '9'}};
- // vector<vector<char>> board={
- // {'5', '3', '.', '.', '7', '.', '.', '.', '.'},
- // {'6', '.', '.', '1', '9', '5', '.', '.', '.'},
- // {'.', '9', '8', '.', '.', '.', '.', '6', '.'},
- // {'8', '.', '.', '.', '6', '.', '.', '.', '3'},
- // {'4', '.', '.', '8', '.', '3', '.', '.', '1'},
- // {'7', '.', '.', '.', '2', '.', '.', '.', '6'},
- // {'.', '6', '.', '.', '.', '.', '2', '8', '.'},
- // {'.', '.', '.', '4', '1', '9', '.', '.', '5'},
- // {'.', '.', '.', '.', '8', '.', '.', '7', '9'}
- // };
- vector<vector<char>> board={{'.', '.', '.', '.', '', '.', '.', '', '.'},
- {'.', '', '.', '', '.', '.', '.', '.', '.'},
- {'.', '.', '.', '.', '.', '', '.', '.', ''},
- {'', '.', '.', '.', '.', '.', '.', '', '.'},
- {'.', '.', '', '.', '', '.', '.', '.', '.'},
- {'.', '', '', '.', '.', '.', '.', '.', '.'},
- {'.', '.', '.', '.', '.', '', '.', '.', '.'},
- {'.', '', '.', '', '.', '.', '.', '.', '.'},
- {'.', '.', '', '.', '.', '.', '.', '.', '.'}};
- bool ans=isValidSudoku(board);
- std::cout << ans << std::endl;
- return ;
- }
#leetcode刷题之路36-有效的数独的更多相关文章
- python -- leetcode 刷题之路
第一题 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数. 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用. 示例: 给定 nums = [2, 7, 11, 15], tar ...
- 使用Java+Kotlin双语言的LeetCode刷题之路(三)
BasedLeetCode LeetCode learning records based on Java,Kotlin,Python...Github 地址 序号对应 LeetCode 中题目序号 ...
- 使用Java+Kotlin双语言的LeetCode刷题之路(二)
BasedLeetCode LeetCode learning records based on Java,Kotlin,Python...Github 地址 序号对应 LeetCode 中题目序号 ...
- 使用Java+Kotlin双语言的LeetCode刷题之路(一)
LeetCode learning records based on Java,Kotlin,Python...Github 地址 序号对应 LeetCode 中题目序号 1 两数之和 给定一个整数数 ...
- #leetcode刷题之路40-组合总和 II
给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合.candidates 中的每个数字在每个组合中只能使用一次.说 ...
- #leetcode刷题之路16-最接近的三数之和
给定一个包括 n 个整数的数组 nums 和 一个目标值 target.找出 nums 中的三个整数,使得它们的和与 target 最接近.返回这三个数的和.假定每组输入只存在唯一答案. 例如,给定数 ...
- #leetcode刷题之路13-罗马数字转整数
罗马数字包含以下七种字符: I, V, X, L,C,D 和 M.字符 数值I 1V 5X 10L 50C 100D 500M 1000例如, 罗马数字 2 写做 II ,即为两个并列的 1.12 写 ...
- #leetcode刷题之路6- Z 字形变换
将一个给定字符串根据给定的行数,以从上往下.从左到右进行 Z 字形排列.比如输入字符串为 "LEETCODEISHIRING" 行数为 3 时,排列如下:L C I ...
- leetcode 刷题之路 64 Construct Binary Tree from Inorder and Postorder Traversal
Given inorder and postorder traversal of a tree, construct the binary tree. Note: You may assume tha ...
随机推荐
- Android开发各种Utils收集库
为方便查找,已进行大致归类,其目录如下所示: Activity相关→ActivityUtils.java→Demo isActivityExists : 判断是否存在Activity launchAc ...
- 调用Android中的软键盘
我们在Android提供的EditText中单击的时候,会自动的弹 出软键盘,其实对于软键盘的控制我们可以通过InputMethodManager这个类来实现.我们需要控制软键盘的方式就是两种一个是像 ...
- RadioGroup实现类似ios的分段选择(UISegmentedControl)控件
在ios7中有一种扁平风格的控件叫做分段选择控件UISegmentedControl,控件分为一排,横放着几个被简单线条隔开的按钮,每次点击只能选择其中一个按钮,他类似于tabbar但是又稍微有点区别 ...
- sql in interview for a job
1.mysql下建表及插入数据 /* Navicat MySQL Data Transfer Source Server : mysql Source Server Version : 50640 S ...
- 禅道Bug管理工具环境搭建
下载地址:http://sourceforge.net/projects/zentao/files/8.2/ZenTaoPMS.8.2.stable.exe/download 1.解压ZenTaoPM ...
- [UI] 精美UI界面欣赏[1]
精美UI界面欣赏[1]
- 【数据结构】循环队列 C语言实现
"Queue.h" #include "Queue.h" #include <stdio.h> #include <stdlib.h> ...
- Spring Security自定义GrantedAuthority前缀
如果我们正使用Spring Security提供默认的基于方法的权限认证注解如下: @PreAuthorize("hasAnyRole('ADMIN', 'USER')") pub ...
- 铁乐学python_day01-和python有关的唠嗑
铁乐学python_day01-和python有关的唠嗑 文:铁乐与猫 2018-03-16 01_python的历史 python的创始人为荷兰人吉多·范罗苏姆(Guido van Rossum). ...
- php面试题之一——php核心技术
一.PHP核心技术 1.写出一个能创建多级目录的PHP函数(新浪网技术部) <?php /** * 创建多级目录 * @param $path string 要创建的目录 * @param $m ...