Skip to content

Instantly share code, notes, and snippets.

View msAzhar's full-sized avatar
🎃
Focusing

msAzhar

🎃
Focusing
View GitHub Profile
@msAzhar
msAzhar / helloworld.c
Last active November 6, 2017 17:08
программка "Привет, Си"
#include <stdio.h>
main(){
printf("Hello World");
}
@msAzhar
msAzhar / Gost.java
Created January 2, 2017 09:45
GOST cipher code (Information Security-2016-17)
package gost;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Iterator;
import java.util.List;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
@msAzhar
msAzhar / kruskal.py
Created May 22, 2016 09:18
Kruskal's Algorithm (Python)
parent = dict()
rank = dict()
def make_set(vertice):
parent[vertice] = vertice
rank[vertice] = 0
def find(vertice):
if parent[vertice] != vertice:
parent[vertice] = find(parent[vertice])