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
#include <iostream> | |
enum values { | |
V0, V1, V2, V3, V4, V5 | |
}; | |
template<typename T> | |
struct named_array { | |
const char* name; | |
std::size_t size; |
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
import java.io.*; | |
import java.util.*; | |
public class Derp { | |
public static void main(String[] args) throws IOException { | |
if (args.length == 0) | |
return; | |
BufferedReader r = new BufferedReader(new FileReader(args[0])); | |
String line = r.readLine(); | |
int n = Integer.parseInt(line); |
NewerOlder