Skip to content

Instantly share code, notes, and snippets.

View frozenL's full-sized avatar
🐢
...

Sisi Liang frozenL

🐢
...
View GitHub Profile
@frozenL
frozenL / list.md
Created January 4, 2021 10:49 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@frozenL
frozenL / root-op.md
Last active July 9, 2025 05:08
Root OnePlus 7 Pro

Root OnePlus 7Pro

Disclaimer: I do not take responsibility for any damage done to your device by using this procedure.

Back up your files first.

Enable developer options

  • Go to Settings > About Phone and tap 7 times on Build number
  • Go to Settings > System > Developer options and switch on USB debugging

Unlock oem on OnePlus

  • Connect your phone to your computer, hold volume down and the power button to boot up your device.
@frozenL
frozenL / 877E.cpp
Created November 5, 2017 16:06
codeforces#422
//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];
@frozenL
frozenL / 2127-LCIS
Created December 16, 2016 05:33
POJ
#include <iostream>
using namespace std;
const int len = 510;
int encode(int i, int j){
return i * len + j;
}