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> | |
| using namespace std; | |
| #define L 4 | |
| #define C 4 | |
| /*Não foi necessário | |
| int cx[] = {1, -1, 0, 0}; | |
| int cy[] = {0, 0, 1, -1}; | |
| */ |
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> | |
| using namespace std; | |
| #define MAX 100 | |
| int L; | |
| int C; | |
| /*Não foi necessário | |
| int cx[] = {1, -1, 0, 0}; | |
| int cy[] = {0, 0, 1, -1}; |
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> | |
| using namespace std; | |
| #define MAX 100 | |
| int memo[MAX][MAX]; | |
| string word; | |
| //r == right, l == left | |
| int maior_palindromo(int l, int r){ |
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
| var x = 4; | |
| var y = 2; | |
| var numeros = [1, 2, 3, 4, 5, 10, 20, 50, 100]; | |
| var str = "Variavel string"; | |
| var n = (x>y) ? x : y ; | |
| function getMessage(){ | |
| alert("mensagem do arquivo externo!"); | |
| } | |
| function sumXY(){ |
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.*; | |
| public class Main { | |
| public static void main (String[] args ) throws IOException{ | |
| InputStreamReader isr = new InputStreamReader(System.in); | |
| BufferedReader br = new BufferedReader(isr); | |
| int competidores = Integer.parseInt(br.readLine()); |
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> | |
| using namespace std; | |
| string solve(string text){ | |
| int ant; | |
| string ans =""; | |
| ant = 0; |
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
| /*INFORMAÇÕES CONSTANTES DA DEFENSORIA*/ | |
| INSTITUTION_NAME = 'Defensoria Pública do Estado de Roraima'; | |
| INSTITUTION_URL = 'www.defensoria.rr.def.br'; | |
| SYSTEM_NAME = 'SOLAR - Solução Avançada em Atendimento e Referência'; | |
| PRIMARY_COLOR = '#1b694b'; | |
| SECONDARY_COLOR = '#696'; | |
| LOGO_URL = '/static/img/logo.png'; | |
| MANUAL_URL = 'http://manuais.rr.def.br/solar/#/home'; | |
| SYSTEM_VERSION = 'V.18.02.5'; |
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
| /* | |
| CUSTOM TEMPLATE SOLAR | |
| By Adriano P. Almeida - last update 26-04-18 | |
| */ | |
| /*INFORMAÇÕES CONSTANTES DA DEFENSORIA*/ | |
| INSTITUTION_NAME = 'Defensoria Pública do Estado de Roraima'; | |
| INSTITUTION_URL = 'www.defensoria.rr.def.br'; | |
| SYSTEM_NAME = 'SOLAR - Solução Avançada em Atendimento e Referência'; | |
| PRIMARY_COLOR = '#1b694b'; |
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
| const URL_BASE = "https://contactc.herokuapp.com/contacts"; | |
| let data = null; | |
| let insert = true; | |
| $(() => { | |
| loadData() | |
| $('.btnDelete').on("click", () => console.log(00)) | |
| $('#btnSave').click(() => { |
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> | |
| <head> | |
| <title>AGENDA</title> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> | |
| <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> |
OlderNewer