Skip to content

Instantly share code, notes, and snippets.

View mxmlkzdh's full-sized avatar

Max Malekzadeh mxmlkzdh

  • Google
  • Manhattan, NY
  • 08:09 (UTC -04:00)
View GitHub Profile
@mxmlkzdh
mxmlkzdh / ObservableHashMap.java
Last active June 22, 2016 21:57
A HashMap that notifies its listener of clear, put, and remove operations.
package com.shlmlkzdh.observablecollections;
import android.os.Handler;
import java.util.HashMap;
import java.util.Map;
/**
* Created by Soheil Malekzadeh on 6/22/2016.
package com.shlmlkzdh.education.threading;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* Created by Soheil on 6/10/2016.
* SleepSort