Software required:
After installation and putting the youtube-dl
in PATH
youtube-dl \
// allow pasting | |
// script is made for https://www.instagram.com/your_activity/interactions/comments page only | |
// var dd = document.getElementsByTagName('div'); | |
// var ok1 = document.querySelectorAll('div[role=\'button\']'); | |
// var ok = document.querySelectorAll('div[tabindex=\'0\']'); | |
// console.log(ok.length); |
# Follow process on this video: https://youtu.be/uz-GrWpIztg | |
# this is what I removed from my device as I don't use these services. | |
# Remove | |
com.coloros.childrenspace | |
com.coloros.filemanager | |
com.coloros.gallery3d | |
com.coloros.karaoke |
class Node: | |
def __init__(self, val): | |
self.val = val | |
self.leftChild = None | |
self.rightChild = None | |
def get(self): | |
return self.val | |
def set(self, val): |
// https://www.hackerrank.com/challenges/insertion-sort/problem | |
#include <bits/stdc++.h> | |
using namespace std; | |
vector<string> split_string(string); | |
// Complete the insertionSort function below. | |
int insertionSort(vector<int> arr) { |
Software required:
After installation and putting the youtube-dl
in PATH
youtube-dl \
""" | |
input string | |
3 2#2 5 6 | |
out: | |
15 | |
3 3#2 5 6 |
from sklearn.naive_bayes import GaussianNB | |
import numpy as np | |
import pandas as pd | |
from csv import reader | |
filename = 'iris.data' | |
# url = "https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data" | |
# for row in reader(open(filename)): |
__author__ = 'Rahul Bali' | |
import string | |
from itertools import cycle | |
a = input() | |
i = 0 | |
rot7="" | |
b = list(string.ascii_lowercase) | |
while i < len(a): |
__author__ = 'Rahul Bali' | |
import string | |
from itertools import cycle | |
a = input() | |
i = 0 | |
rot7="" | |
b = list(string.ascii_lowercase) | |
while i < len(a): |