当前位置: 首页 > 软件库 > 手机/移动开发 > >

Sudoku

授权协议 MIT License
开发语言 JavaScript TypeScript
所属分类 手机/移动开发
软件类型 开源软件
地区 不详
投 递 者 娄学文
操作系统 iOS
开源组织
适用人群 未知
 软件概览

A modern web-based Sudoku app.

Introduction

There are a lot of Sudoku games on the web, but none of them well built nor with good design.We want to make our take modern, secure, well-designed and open to everyone – it works well on all available platforms and screens.

Sudoku consists of a public API, web app, and in the future – a mobile app.

The web app is written in Vue.js, while the API in Rust.

API documentation

Contributing

We are open to contributors, so don't hesitate to make a pull request!

Licence

This project is licensed under the MIT License - see LICENSE for details

  • 数独(SuDoku)介绍 http://blog.csdn.net/lihongzhai/  日期:2005-10-11 04:49:24   数独(日语:数独 すうどく)是一种源自18世纪末的瑞士,后在美国发展、并在日本得以发扬光大的数学智力拼图游戏。拼图是九宫格(即3格宽×3格高)的正方形状,每一格又细分为一个九宫格。在每一个小九宫格中,分别填上1至9的数字,让整个大九宫格每一列、每一行的数字

  • 问题描述:数独(Sudoku)是一款大众喜爱的数字逻辑游戏。玩家需要根据9X9盘面上的已知数字,推算出所有剩余空格的数字,并且满足每一行、每一列、每一个粗线宫内的数字均含1-9,并且不重复。 输入: 包含已知数字的9X9盘面数组[空缺位以数字0表示] 输出: 完整的9X9盘面数组 输入描述: 包含已知数字的9X9盘面数组[空缺位以数字0表示] 输出描述: 完整的9X9盘面数组 #include<i

  • https://leetcode.com/problems/sudoku-solver/ public class Solution { private static boolean isValid(char[][] board, int i, int j) { for (int k = 0; k < 9; k++) { if (k != j &

 相关资料
  • Question leetcode: Valid Sudoku | LeetCode OJ lintcode: (389) Valid Sudoku Determine whether a Sudoku is valid. The Sudoku board could be partially filled, where empty cells are filled with the chara

  • 问题内容: 我正在尝试编写一种算法,以Java或Javascript创建合法的Sudoku板。两者都不起作用,我也不完全清楚为什么。 本质上,两个程序中的问题是x或y的增量都超过了其应有的幅度(跳过平方)。我一生无法弄清楚这是怎么发生的。如果需要,我可以提供完成JS解决方案的HTML。 我最好的猜测是它与我如何使用递归创建堆栈有关,但是据我所知,它 应该可以 工作。在我的旧代码中,有一个不正确的f

  • 我正在用Python编写一个数独求解器,它接受一个部分填充的板,并使用回溯和前向检查来填充其余部分并解决难题。前向检查是指每次为空白单元格赋值时,检查其行、列和框中未赋值的“邻居”在赋值后是否仍有非空域。 为了表示我的board(dimensitions:N x N board with P x Q box),我使用了一个2D列表,其中每个条目的形式为[value,[domain]],其中valu

  • Valid Sudoku 描述 Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules http://sudoku.com.au/TheRules.aspx . The Sudoku board could be partially filled, where empty cells are filled w

  • 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 there will be only one unique solution. 分析 无。

  • 采用J2ME实现的纸牌类游戏FreeCell和填数字游戏Sudoku。