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
| <div> | |
| Today's squardle puzzle: | |
| <div id="words"> | |
| </div> | |
| <div id="optional"> | |
| </div> | |
| </div> | |
| <script src="https://squaredle.app/api/today-puzzle-config.js"></script> |
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
| from pynput.mouse import Button, Controller | |
| from PIL import Image, ImageGrab | |
| import random | |
| import pyautogui | |
| import time | |
| from time import sleep | |
| import requests | |
| import sys | |
| timer=0 |
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
| from pynput.mouse import Button, Controller | |
| from PIL import Image, ImageGrab | |
| import random | |
| import pyautogui | |
| from time import sleep | |
| error=3 | |
| def getRectangle(x,y): | |
| return ((3+233*x,523+125*y),(3+233*(x+1),523+125*(y+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
| /*input | |
| 4 5 1 10 | |
| 1 2 2 | |
| 1 3 2 | |
| 1 4 2 | |
| 2 3 1 | |
| 3 4 1 | |
| */ | |
| #include <bits/stdc++.h> | |
| #pragma GCC optimize("unroll-loops,no-stack-protector") |
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
| /*input | |
| 4 4 | |
| 5 9 1 2 | |
| TOTIENT 3 3 | |
| TOTIENT 3 4 | |
| MULTIPLY 4 4 3 | |
| TOTIENT 4 4 | |
| */ | |
| #include <bits/stdc++.h> |
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
| /*input | |
| */ | |
| #include <bits/stdc++.h> | |
| #pragma GCC optimize("unroll-loops,no-stack-protector") | |
| using namespace std; | |
| typedef long long ll; | |
| typedef long double ld; | |
| typedef pair<int,int> pii; | |
| typedef pair<ll,ll> pll; |
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<bits/stdc++.h> | |
| using namespace std; | |
| typedef long long ll; | |
| typedef pair<int,int> pii; | |
| typedef pair<ll,ll> pll; | |
| typedef long double ld; | |
| typedef pair<ld,ld> pdd; | |
| #define F first | |
| #define S second | |
| #define MP make_pair |
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
| /*input | |
| 6 | |
| 0 1 | |
| 1 2 | |
| 2 3 | |
| 3 4 | |
| 4 5 | |
| 5 6 | |
| */ | |
| #include <bits/stdc++.h> |
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 <bits/stdc++.h> | |
| using namespace std; | |
| typedef long long ll; | |
| typedef pair<int,int> pii; | |
| typedef pair<ll,ll> pll; | |
| #define F first | |
| #define S second | |
| #define ALL(a) a.begin(),a.end() | |
| #define SZ(a) ((int)a.size()) | |
| #define MP make_pair |
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 <bits/stdc++.h> | |
| #pragma GCC optimize("unroll-loops,no-stack-protector") | |
| #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") | |
| using namespace std; | |
| typedef long long ll; | |
| typedef pair<int,int> pii; | |
| typedef pair<ll,ll> pll; | |
| typedef pair<double,double> pdd; | |
| #define IOS ios_base::sync_with_stdio(0); cin.tie(0) | |
| #define ALL(a) a.begin(),a.end() |