I hereby claim:
- I am remexre on github.
- I am remexre (https://keybase.io/remexre) on keybase.
- I have a public key ASArS9ZXSTjnMwThG6No6iTC2K2CVK_Ww6kEDogqNUlavAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#include <cstdio> | |
#include <set> | |
#include <gmpxx.h> | |
int main(int argc, char** argv) { | |
// Set upper bound | |
mpz_class max; | |
{ | |
unsigned int maxpow2 = 8; |
#!/usr/bin/env python3 | |
def S(x): # O(1) | |
"""Successor function. | |
Simply put, S(x) = x + 1.""" | |
return x+1 | |
def iS(y): # O(y) | |
"""Inverse of the successor function. |
[section .text] | |
GLOBAL _start | |
tiles: | |
.unknown equ '.' | |
.empty equ ' ' | |
.mine equ '!' | |
_start: |
import java.awt.BorderLayout; | |
import java.awt.Dimension; | |
import java.awt.Graphics; | |
import java.awt.event.MouseEvent; | |
import java.awt.event.MouseListener; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.util.Random; | |
import javax.imageio.ImageIO; |