Skip to content

Instantly share code, notes, and snippets.

View guptarohit's full-sized avatar
🧘‍♂️
Focusing 🔁 1.01³⁶⁵

Rohit Gupta guptarohit

🧘‍♂️
Focusing 🔁 1.01³⁶⁵
View GitHub Profile

Keybase proof

I hereby claim:

  • I am guptarohit on github.
  • I am rohitgupta (https://keybase.io/rohitgupta) on keybase.
  • I have a public key whose fingerprint is 775C D642 C6E6 9C60 1E77 1478 5B33 355F 6D7D F8D6

To claim this, I am signing this object:

@guptarohit
guptarohit / sudoku_checker.cpp
Last active November 3, 2016 06:18
Program to check the numbers possible at a position of a Sudoku.
//This program checks the numbers possible at a position of a Sudoku.
//@author : Rohit Gupta
#include <iostream>
using namespace std;
int main() {
int i, j, p, q, ch = 1, freq[10] = {0};
int s[9][9] = {
{0, 0, 0, 0, 0, 0, 6, 8, 0},