Skip to content

Instantly share code, notes, and snippets.

View guocheng's full-sized avatar

Guo Cheng guocheng

View GitHub Profile
@guocheng
guocheng / Python is pass by assignment.ipynb
Created July 8, 2019 14:43
Python is pass by value or by assignment
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@guocheng
guocheng / Python LinkedList.ipynb
Created June 29, 2019 13:55
Python implementation of LinkedList
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@guocheng
guocheng / Recursion.ipynb
Created June 28, 2019 07:54
Recursion Practise
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@guocheng
guocheng / Python for and while loop.ipynb
Last active June 9, 2019 06:26
Python for and while loop
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@guocheng
guocheng / 1 - sql_interview_questions.md
Last active April 14, 2019 13:36 — forked from mjhea0/1 - sql_interview_questions.md
Jitbit's SQL interview questions
@guocheng
guocheng / .eslintrc
Last active April 1, 2016 13:03
A copy of the eslintrc I use
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"jsx": true,
"modules": true,
@guocheng
guocheng / .eslintrc
Last active January 3, 2018 19:18
A eslint config file for linting react/jsx and ES6 syntax. This file is based on (https://gist.github.com/cletusw/e01a85e399ab563b1236) and (https://github.com/kriasoft/react-starter-kit/blob/master/.eslintrc). Note that I use single quote in the rules, to change it, lookup 'quotes' and change it to `"quotes": [1, "double"].
{
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"jsx": true,
"modules": true,