Skip to content

Instantly share code, notes, and snippets.

View smatthewenglish's full-sized avatar
🌞

Sean Matt smatthewenglish

🌞
View GitHub Profile
@gsalgado
gsalgado / quorum-new-block.md
Last active October 16, 2017 07:34
How a block gets added to the chain in quorum

How a block gets added to the chain in quorum

This lives in the quorum repo now

@waieez
waieez / join.js
Last active July 7, 2017 22:00
HackerRank Join Question
var left = [
"apple",
"grape",
"grape",
"melon"
]
var right = [
"grape",
"lemon",
@mmloveaa
mmloveaa / 3-22 Count the holes
Last active October 24, 2018 09:36
3-22 Count the holes
24 -> 1
1264 -> 2
9899 -> 5
349 -> x
You swiftly determine that the puzzle can be solved by counting the number of holes in the digits of a number. e.g. 1,2,3,5,7 have no holes, 0, 4, 6, 9 have 1 hole each, and 8 has 2 holes. 2 is therefore the value of x to the last line.