Skip to content

Instantly share code, notes, and snippets.

#!env python
# -*- coding: utf-8 -*-
import os
import collections
import argparse
from pathlib import Path
class Node:
def __init__(self):
self.count, self.key = 0, ""
@u2takey
u2takey / dabblet.html
Created December 17, 2017 08:52 — forked from csssecrets/dabblet.css
Untitled
<html><body> <h1>My first SVG</h1> <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <circle cx="100" cy="50" r="40" stroke="black" stroke-width="2" fill="red" /></svg> </body></html>
> Written with [StackEdit](http://benweet.github.io/stackedit/).
#数据结构与算法in python [^footnote1]
##第二章 基础知识
###1.常见的算法复杂度和标记
<a href="http://www.flickr.com/photos/88851493@N05/9449343681/" title="Flickr 上 u2takey 的 _[K}(F7[T)SHZCWVVFA2ATV"><img src="http://farm3.staticflickr.com/2850/9449343681_5a0ce11214.jpg" width="500" height="269" alt="_[K}(F7[T)SHZCWVVFA2ATV"></a>
###2.简单的例子
```