Skip to content

Instantly share code, notes, and snippets.

View rjshekar90's full-sized avatar

Raja Shekar rjshekar90

View GitHub Profile
@mattharrison
mattharrison / Pytest Intro Assignments.rst
Last active October 25, 2021 18:57
O'Reilly Pytest Class

Pytest Introduction

Copyright 2019 - Matt Harrison

@__mharrison__

@nickoala
nickoala / 0_python_email.md
Last active June 16, 2024 12:58
Use Python to send and receive emails

Use Python to:

  • send a plain text email
  • send an email with attachment
  • receive and filter emails according to some criteria
@Ray1988
Ray1988 / SumRootToLeafNumbers.py
Created March 6, 2014 18:56
Sum Root to Leaf Numbers(Python)
"""
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.
An example is the root-to-leaf path 1->2->3 which represents the number 123.
Find the total sum of all root-to-leaf numbers.
For example,
1