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
/* | |
* Google Code Jam 2013 Qualification Round | |
* Problem C. Fair and Square | |
*/ | |
package main | |
import ( | |
"bufio" | |
"flag" | |
"fmt" |
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
/* | |
* Google Code Jam 2013 Qualification Round | |
* Problem B. Lawnmower | |
*/ | |
package main | |
import ( | |
"bufio" | |
"flag" | |
"fmt" |
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
/* | |
* Google Code Jam 2013 Qualification Round | |
* Problem A. Tic-Tac-Toe-Tomek | |
*/ | |
package main | |
import ( | |
"bufio" | |
"flag" | |
"fmt" |
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
/* | |
* recursive quad implementation | |
* rectangle subdivision | |
* average over input image | |
*/ | |
package main | |
import ( | |
"fmt" | |
"image" |
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
/* min viable nacl opengl */ | |
#include <stdio.h> | |
#include "ppapi/c/pp_bool.h" | |
#include "ppapi/c/pp_errors.h" | |
#include "ppapi/c/pp_var.h" | |
#include "ppapi/c/pp_module.h" | |
#include "ppapi/c/pp_resource.h" | |
#include "ppapi/c/pp_completion_callback.h" | |
#include "ppapi/c/ppb_messaging.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
/* | |
* Google Code Jam 2012 Qualification Round | |
* Problem C. Recycled Numbers | |
*/ | |
package main | |
import ( | |
"bufio" | |
"bytes" | |
"flag" |
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
/* | |
* Google Code Jam 2012 Qualification Round | |
* Problem B. Dancing with the Googlers | |
*/ | |
package main | |
import ( | |
"bufio" | |
"flag" | |
"fmt" |
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
/* | |
* Google Code Jam 2012 Qualification Round | |
* Problem A. Speaking in Tongues | |
*/ | |
package main | |
import ( | |
"bufio" | |
"flag" | |
"fmt" |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head id="zeta"> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8" /> | |
<meta name="author" content="[email protected]" /> | |
<title>okaq.com</title> | |
<link rel="shortcut icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA1BMVEUiqruU6JEzAAAADElEQVQImWNgIA0AAAAwAAFDlLdnAAAAAElFTkSuQmCC" /> | |
<style type="text/css"> | |
html,body{width:100%;height:100%;margin:0px;padding:0px;background-color:rgba(255,255,255,1.0);} | |
#beta{width:100%;height:100%;display:table;} |
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
package main | |
import ( | |
"fmt" | |
"image" | |
"image/color" | |
"image/jpeg" | |
"image/png" | |
"os" | |
) |