Skip to content

Instantly share code, notes, and snippets.

@shenfeng
shenfeng / gist:5589978
Created May 16, 2013 07:19
wildcard_match
__author__ = 'feng'
def is_match(patten, str):
match_index = 0
for idx, c in enumerate(patten):
if c == '?':
match_index += 1
elif c == '*':
if idx == len(patten) - 1:
@jgarzik
jgarzik / ron-shamir-review.md
Created October 16, 2012 20:51
Peer review of "Quantitative Analysis of the Full Bitcoin Transaction Graph"

This is a review of "Quantitative Analysis of the Full Bitcoin Transaction Graph" by Dorit Ron and Adi Shamir.

There are some incorrect details and analyses that warrant attention.

Oct. 31 UPDATE

The authors have introduced several revisions to their paper, available at the same URL as before.

The criticism below may be outdated in part or in full.