I hereby claim:
- I am byyam on github.
- I am yamzzz (https://keybase.io/yamzzz) on keybase.
- I have a public key ASASe_RhGfvyDxjLcBTJF_B0nKpx1vEwZ8ToJq9N5pKIlAo
To claim this, I am signing this object:
#include <stdio.h> | |
#include <limits.h> | |
const int s = 30; | |
bool f(long i) | |
{ | |
int r = 0; | |
for(;;) | |
if (i < 0 || r > s) return false; | |
else if (i == 1) break; |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"sync" | |
"time" | |
"runtime" | |
) | |
type keyAndValue struct { |
package main | |
import ( | |
"fmt" | |
"reflect" | |
) | |
type State struct{} | |
func testnil1(a, b interface{}) bool { |
package main | |
import ( | |
"fmt" | |
"bytes" | |
"strings" | |
"io/ioutil" | |
"net/http" | |
"github.com/gin-gonic/gin" | |
"github.com/xeipuuv/gojsonschema" | |
) |
// NOTE: compile with g++ filename.cpp -std=c++11 | |
#include <stdio.h> | |
#include <cmath> | |
#include <cstdlib> | |
#include <time.h> | |
#define DIM 1024 | |
#define DM1 (DIM-1) | |
#define _sq(x) ((x)*(x)) // square | |
#define _cb(x) abs((x)*(x)*(x)) // absolute value of cube |