Skip to content

Instantly share code, notes, and snippets.

View sayak2k1maruti's full-sized avatar
👋
Learning new things everyday!

Sayak sayak2k1maruti

👋
Learning new things everyday!
View GitHub Profile
@sayak2k1maruti
sayak2k1maruti / k-means-clustering.ipynb
Created February 16, 2022 12:31
K-Means Clustering.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sayak2k1maruti
sayak2k1maruti / digit-recognition-using-backpropagation-algorithm.ipynb
Last active January 29, 2022 15:56
Digit Recognition Using BackPropagation Algorithm.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sayak2k1maruti
sayak2k1maruti / tic-tac-toe.py
Created May 27, 2020 12:47
It is a terminal game of Tic-Tac-Toe codded in python
import random
posOfVL = [6,12]
posOfHL = [3,6]
matePos = []
blankPos = []
posOfCross = []
posOfCircle = []
demoPos = [[3,2],[9,2],[15,2],[3,5],[9,5],[15,5],[3,8],[9,8],[15,8]]
winingPos = [[1,2,3],[4,5,6],[7,8,9],[1,4,7],[2,5,8],[3,6,9],[1,5,9],[3,5,7]]