Skip to content

Instantly share code, notes, and snippets.

View Vedrana's full-sized avatar

Vedrana Janković Vedrana

View GitHub Profile
@Vedrana
Vedrana / intro_to_python.md
Created December 15, 2012 00:41
Intro to Python for PyLadies in Zagreb workshop (Dec 14, 15 2012)

Intro to Python

Kalkulator

2 + 2
2.5 + 2
3 - 1
@Vedrana
Vedrana / MedianOfIntegerStream.java
Created September 8, 2012 14:30
Median of stream of integers
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Queue;
// Given a stream of unsorted integers, find the median element in sorted order at any given time.
// http://www.ardendertat.com/2011/11/03/programming-interview-questions-13-median-of-integer-stream/
public class MedianOfIntegerStream {
public Queue<Integer> minHeap;
public Queue<Integer> maxHeap;