
棋盘
文章平均质量分 81
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 351. Android Unlock Patterns(安卓解锁)
原题网址:https://leetcode.com/problems/android-unlock-patterns/Given an Android 3x3 key lock screen and two integers m and n, where 1 ≤ m ≤ n ≤ 9, count the total number of unlock patterns of the An原创 2016-05-25 01:34:55 · 5441 阅读 · 0 评论 -
LeetCode 174. Dungeon Game(游戏)
原题网址:https://leetcode.com/problems/dungeon-game/The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dungeon consists of M x N rooms laid ou原创 2016-05-25 01:35:03 · 560 阅读 · 0 评论 -
LeetCode 36. Valid Sudoku(数独游戏)
原题网址:https://leetcode.com/problems/valid-sudoku/Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are fil原创 2016-05-20 10:38:02 · 715 阅读 · 0 评论 -
LeetCode 37. Sudoku Solver(数读游戏)
原题网址:https://leetcode.com/problems/sudoku-solver/Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that th原创 2016-05-20 10:40:25 · 444 阅读 · 0 评论 -
LeetCode 52. N-Queens II(N皇后)
原题网址:https://leetcode.com/problems/n-queens-ii/Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.方法一:深度优先搜索,使用一原创 2016-05-21 06:27:12 · 965 阅读 · 0 评论 -
LeetCode 353. Design Snake Game(设计贪吃蛇游戏)
原题网址:https://leetcode.com/problems/design-snake-game/Design a Snake game that is played on a device with screen size = width x height. Play the game online if you are not familiar with the gam原创 2016-06-16 02:41:06 · 4915 阅读 · 0 评论 -
LeetCode 348. Design Tic-Tac-Toe(井字棋)
原题网址:https://leetcode.com/problems/design-tic-tac-toe/Design a Tic-tac-toe game that is played between two players on a n x n grid.You may assume the following rules:A move is guaranteed原创 2016-05-18 09:30:28 · 4496 阅读 · 0 评论 -
LeetCode 130. Surrounded Regions(包围区域)
原题网址:https://leetcode.com/problems/surrounded-regions/Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'.A region is captured by flipping all 'O's into 'X's i原创 2016-05-27 00:25:49 · 535 阅读 · 0 评论 -
LeetCode 51. N-Queens(N皇后)
原题网址:https://leetcode.com/problems/n-queens/The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.Given an integer n, retu原创 2016-05-21 06:21:29 · 559 阅读 · 0 评论