I hereby claim:
- I am hjr265 on github.
- I am hjr265 (https://keybase.io/hjr265) on keybase.
- I have a public key whose fingerprint is 10B8 BA34 C2EC 2103 F9C4 0F8C 43F6 40AF 21F5 3B53
To claim this, I am signing this object:
| #include <unistd.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <errno.h> | |
| #include <fcntl.h> | |
| int main() { | |
| FILE *pfin, *pfout; | |
| pfin = fdopen(3, "r"); | |
| pfout = fdopen(4, "w"); |
| 7 | |
| 3 | |
| 5 | |
| 1 | |
| 9 |
| for i in range(5): | |
| a = input() | |
| print(10 - a) |
| A = [3, 7, 5, 9, 1] | |
| for x in A: | |
| print(x) | |
| b = int(input()) | |
| if x + b != 10: | |
| break | |
| else: |
I hereby claim:
To claim this, I am signing this object:
| #include <iostream> | |
| #include <string> | |
| using namespace std; | |
| int main() { | |
| string s; | |
| cin >> s; | |
| cout << "Hello, "+s+"!" << endl; | |
| return 0; |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| //////// | |
| // This sample is published as part of the blog article at www.toptal.com/blog | |
| // Visit www.toptal.com/blog and subscribe to our newsletter to read great posts | |
| //////// |
| async.auto({ | |
| a: function() {}, | |
| b: ['a', function() {}], | |
| c: ['b', function() {}], | |
| d: ['c', function() {}], | |
| e: ['d', function() {}] |
| function Bot() { | |
| this.grid = [] | |
| for(var y = 0; y < 10; ++y) { | |
| var row = [] | |
| for(var x = 0; x < 10; ++x) { | |
| row.push({ | |
| attacked: false | |
| }) | |
| } | |
| this.grid.push(row) |