Skip to content

Instantly share code, notes, and snippets.

View igaryhe's full-sized avatar
🕹️
making games

dan igaryhe

🕹️
making games
View GitHub Profile
@igaryhe
igaryhe / readme.txt
Created October 3, 2020 10:09
Untitled PuzzleScript Script
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@igaryhe
igaryhe / readme.txt
Created September 20, 2020 12:24
My Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@igaryhe
igaryhe / readme.txt
Created November 30, 2019 17:50
Untitled PuzzleScript Script
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@igaryhe
igaryhe / readme.txt
Created October 5, 2019 03:50
5400 (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@igaryhe
igaryhe / readme.txt
Created August 20, 2019 15:10
5400 (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@igaryhe
igaryhe / readme.txt
Created August 14, 2019 14:48
Arithmetic (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <time.h>
#include <string.h>
#include <math.h>
typedef struct {
char id[7];
int score;

Keybase proof

I hereby claim:

  • I am igaryhe on github.
  • I am igaryhe (https://keybase.io/igaryhe) on keybase.
  • I have a public key whose fingerprint is E8C6 8497 7C4E 6BF1 57A4 1D41 EE2A F3C6 DA83 C11B

To claim this, I am signing this object:

#include <stdio.h>
#define MAXM 100
#define MAX 2000
#define MOD 1000000007
int main() {
int m, r, s;
int array[MAXM + 10];
scanf("%d %d %d", &m, &r, &s);
#include <iostream>
#include <vector>
#include <algorithm>
#define MAX 2000
using namespace std;
int main() {
int t;