Keybase proof
I hereby claim:
- I am navkast on github.
- I am navkast (https://keybase.io/navkast) on keybase.
- I have a public key ASBjIKKiowiLalXLMDMsEKGptSCX4s72SWFxz7KwrcMSkQo
To claim this, I am signing this object:
{ | |
repository(owner: "microsoft", name: "vscode") { | |
object(expression: "720b72ea268ed1a0001b4be2cac35dbbfd74e079") { | |
... on Commit { | |
id | |
history(first: 5) { | |
nodes { | |
hash: oid | |
message | |
author { |
I hereby claim:
To claim this, I am signing this object:
[alias] | |
list-alias = "!git config -l | grep alias | cut -c 7-" | |
lds = log --graph --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cred\\ [%an]" --decorate --date=short | |
delete-merged-branches = "!f() { git branch --merged ${1-master} | grep -v " ${1-master}$" | xargs git branch -d; }; f" | |
puush = "!f() { git symbolic-ref --short -q HEAD | xargs git push -u origin ; }; f" | |
logg = log --graph --decorate --pretty=short |
package com.navkast; | |
import java.util.Collection; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.concurrent.BlockingQueue; | |
import java.util.concurrent.LinkedBlockingQueue; | |
import java.util.concurrent.locks.Condition; | |
import java.util.concurrent.locks.Lock; | |
import java.util.concurrent.locks.ReentrantLock; |
package com.navkast.concurrent; | |
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.concurrent.BrokenBarrierException; | |
import java.util.concurrent.CountDownLatch; | |
import java.util.concurrent.CyclicBarrier; | |
import java.util.concurrent.ThreadFactory; | |
import java.util.concurrent.TimeUnit; | |
import java.util.concurrent.atomic.AtomicReference; |
package com.company; | |
import java.io.IOException; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Solution { | |
public enum Error { | |
TOO_MANY_CHILDREN("E1"), |