Skip to content

Instantly share code, notes, and snippets.

;; I've watched most, if not all of these.
Korean:
Oldboy
Sympathy for Mr Vengeance
Sympathy for Lady Vengeance
Bakjwi
JSA
Memories of Murder
Man From Nowhere
@kumarRaj
kumarRaj / find_styles.py
Created October 2, 2018 02:42
Returns a map of all styles in the style tag
import re
file = open("beautify.html", "r")
text = file.read()
lines = text.split("\n")
y = tuple((re.search("\w+(?=\s?{)", line), re.search("(?<={)(.*)(?=})", line)) for line in lines)
classes = {}
for element in y:
if element[0] is not None:
Easy
Write a program to print tables of a number.
Write a program to search a number in array.
Find sum of numbers in an array.
Write a program to reverse a number.
Write a program to sort an array.
Count number of words in given strings.
Print fibonacci series.
Check if number is prime or not?
Program to Check Whether a Character is an Alphabet or not