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 <bits/stdc++.h> | |
typedef long long int64; | |
typedef unsigned long long uint64; | |
using namespace std; | |
map<string, int> ctv = {{"VERMELHO", 0}, {"LARANJA", 1}, {"VERDE", 2}, {"AZUL", 3}}; | |
int bad[4] = {1, 3, 0, 2}; |
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
// Copyright (c) 2000 Dustin Sallings <dustin@spy.net> | |
package net.spy.photo.util; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.sql.PreparedStatement; | |
import java.sql.ResultSet; | |
import java.sql.SQLException; | |
import java.util.ArrayList; |
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
// Copyright (c) 2000 Dustin Sallings <dustin@spy.net> | |
package net.spy.photo.util; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.sql.PreparedStatement; | |
import java.sql.ResultSet; | |
import java.util.ArrayList; | |
import java.util.zip.GZIPOutputStream; |