Skip to content

Instantly share code, notes, and snippets.

View ashik94vc's full-sized avatar

Ashik Vetrivelu ashik94vc

View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@ashik94vc
ashik94vc / Suguru.py
Created May 10, 2017 14:35
Suguru Tile Generator
import random
import Tkinter
root = Tkinter.Tk()
class Block:
def __init__(self,index):
self.index = index
self.shapeNo = 0
def isEmpty(self):
@ashik94vc
ashik94vc / Arrayception.java
Created February 27, 2017 19:13
Java Procedure to Read a list of stringLists to identify recurrences of the string in other lists.
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.util.HashMap;
public class Arrayception {
public static void main(String[] args) {
ArrayList<String> docs1 = new ArrayList();