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
{"lastUpload":"2020-05-01T12:24:54.246Z","extensionVersion":"v3.4.3"} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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> | |
#include "permutation.h" | |
#include "polynomial.h" | |
using namespace std; | |
int main() { | |
Permutation P1(vector<size_t>{1, 4, 8, 5, 2, 3, 6, 7}); | |
Permutation P2(vector<size_t>{7, 3, 4, 8, 2, 5, 1, 6}); |
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> | |
#include "permutation.h" | |
using namespace std; | |
int main() { | |
vector<size_t> vect; | |
for (size_t i = 18; i < 324; ++i) | |
vect.push_back(i); |
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> | |
#include <algorithm> | |
#include "matrix.h" | |
#include "polynomial.h" | |
#include "permutation.h" | |
using namespace std; | |
using P_T = Polynomial<int>; | |
#define x P_T(make_pair(1, 1)) |
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> | |
#include <algorithm> | |
#include "matrix.h" | |
#include "polynomial.h" | |
#include "permutation.h" | |
using namespace std; | |
using P_T = Polynomial<int>; | |
#define x P_T(make_pair(1, 1)) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/usr/bin/env python3 | |
import lzma | |
import base64 | |
import urllib.request | |
pi = lzma.decompress(base64.b64decode(b'/Td6WFoAAATm1rRGAgAhARYAAAB0L+Wj4E4gInhdABmMQtymKEbcBkAeJndQO9IkCbaE1Yh3QvtC83uVzG0DEO2f9PVOiNCQuES+3nu/11KgoSzoxHkIBOa4KGJDzUY1AfPVevwyx6ZjytfsuUxKINzM2oqx/TnkvS5waFcrOU3TVDcR+qeykOF5LN9yb7KLuWVMKW/9xEhtR77BHpUPfCTKz9O+dS9XkdWSmIKXvWYL7EoxWaM4J3mXGi4civuOV/d9G+/lMpPc20soGcm7A3/SgUT+cdtSkQNchxRR1Y8lNPa2gz18+REV5dk0v84YNIj6VZre7GKgJFXxFckc3+p4u5td23l+I5hKT0jxRLSECki3wF6l58aElpZmt3YELyq1dJplpxAFPcElXN7eyNQVbBYH9NzGYfcQDEET40DpxFWGZB2mEHzJsdffQ0YEjiWzym9Vg8ApaDtZVE7phSbBFCwCFH0BrTzGaA9hP8qXCq7H/WabjzeEjgSE7M0iqIQXsrcM58l6S4ByEEAolUqHQYbt0G9iV5P8G9zXDZnQyarSCYXdT3XprS8laqFyz9IMAGnb4A5vqemkBqEBr3mdCMYV1XGgyDYZfVSA+lZSLkbaEltQ9FmB3V4HcuVX210HM2wRCdGE73KUs7PEZpoBb5IG7DXGmDiKAJZk3cc+B6RhNlA2q0V3ZHw43XtTotGTxnAAaWuXV8ct/PBYuS/J1NdKPlnTxiZn97mryzH/66sq42otHsPazcQLSoLY6Ycwx86N5Vfy72T/w4niFUJ/0pxd4nUF7hki2a6aY2ftSV9Ai8BsjkNMbovvrbHSwACRl+2MMIZnoHn1pZamWdlKD4WxTMRD23MgFl2oLpVKpvfZxCl8TBaqLs6F4C0naX1Lj/k8HEIo14S |
OlderNewer