Skip to content

Instantly share code, notes, and snippets.

@Divay9Sharma
Divay9Sharma / sudoku.cpp
Created July 16, 2020 17:57
Solve the Sudoku - backtracking
#include<bits/stdc++.h>
using namespace std;
bool check(int mat[9][9],int I,int J,int k){
for(int i=0;i<9;i++){
if(mat[I][i] == k)
return false;
}
for(int i=0;i<9;i++){
if(mat[i][J] == k)
@pbosetti
pbosetti / recurstats.pdf
Last active April 6, 2023 01:13
Recursion formulas for sample mean and sample variance
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.