Skip to content

Instantly share code, notes, and snippets.

View aglaiawong's full-sized avatar
🐰
Bunnies are cutest~<3

aglaiawong

🐰
Bunnies are cutest~<3
View GitHub Profile
@aglaiawong
aglaiawong / README-Template.md
Created December 14, 2018 01:18 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@aglaiawong
aglaiawong / pathsum_59.py
Created July 2, 2018 03:33
PathSum_59ms
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def pathSum(self, root, sum):
"""