Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
Disclaimer: I do not take responsibility for any damage done to your device by using this procedure.
Back up your files first.
- Go to
Settings > About Phone
and tap 7 times onBuild number
- Go to
Settings > System > Developer options
and switch onUSB debugging
- Connect your phone to your computer, hold volume down and the power button to boot up your device.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Danil and a Part-time Job | |
#include <iostream> | |
#include <vector> | |
using namespace std; | |
const int N = 200005; | |
int orderIn[N], orderOut[N], order = 0; | |
int n; | |
vector <int> children[N]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
const int len = 510; | |
int encode(int i, int j){ | |
return i * len + j; | |
} |