Skip to content

Instantly share code, notes, and snippets.

View r10a's full-sized avatar
🔌
Back to Work

Rohit r10a

🔌
Back to Work
View GitHub Profile
@r10a
r10a / cpu_benchmarks.ipynb
Last active May 3, 2019 20:42
CPU benchmark parsing script
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@r10a
r10a / 0_DP_CTCI.md
Created April 28, 2019 03:18
DP questions in CTCI

DP CTCI

DP in the wild

@r10a
r10a / 0 CTCI Sorting and Searching.md
Last active March 24, 2019 04:58
0 CTCI Sorting and Searching

Sorting and Searching problems CTCI

Bit Manipluation problems CTCI

@r10a
r10a / 0 Interview Questions.md
Last active April 18, 2019 03:42
Interview questions encountered in the wild

Interview questions

  1. python_indent_checker.py : Check if indentation of a python script is correct
  2. disjoint_sets.py : List groups of nodes which are connected
  3. Minesweeper solution
  4. tree mirror checker
  5. Find largest square in a matrix of 0s and 1s
  6. Correct compression of string
  7. Encircular
  8. Simple Max Difference
  9. Most freqeuent words in a string
@r10a
r10a / 0 CTCI Graph problems.md
Last active February 17, 2019 02:53
graph problems ctci

Graph problems ctci

@r10a
r10a / 0 CTCI Stack Queue problems.md
Last active February 1, 2019 03:12
Stacks and Queues from CTCI

Stacks and Queues from CTCI

Array problems CTCI

@r10a
r10a / app.py
Created October 17, 2018 16:49
Apache Webserver defaults for bottle app with Cassandra backend
#bottleapp/app.py
from bottle import Bottle, route, run
app = Bottle()
from cassandra.cluster import Cluster
@app.route('/hello')
def hello():