Skip to content

Instantly share code, notes, and snippets.

#include <iostream>
enum values {
V0, V1, V2, V3, V4, V5
};
template<typename T>
struct named_array {
const char* name;
std::size_t size;
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);