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
/* Estrutura de Dados II - Árvore Binária */ | |
#include <iostream> | |
#include <windows.h> | |
typedef int tipochave; | |
using namespace std; | |
typedef struct aux { |
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 sys | |
import requests | |
from urllib.parse import urlparse | |
from urllib.parse import parse_qs | |
if len(sys.argv) == 1: | |
print('url não foi informada') | |
exit() | |
url = sys.argv[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
# ------- Jogo de Damas em Assembly ------- | |
# Curso: Bacharelado em Ciência da Computação | |
# Disciplina: Arquitetura de Computadores II | |
# Autores: Willian R. Schuck, Kimberly Geremia | |
.data | |
tabuleiro: .space 64*4 | |
atual: .space 4 | |
anterior: .space 4 | |
brancasJogam:.asciiz" Brancas Jogam\n" |
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
typedef int reg; | |
struct no { | |
reg data; | |
no* previous; | |
no* next; | |
no() { | |
data = 0; | |
this->previous = nullptr; |
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
# Programa em Assembly (MIPS) para gerar valores pseudo aleatório | |
# Base para o projeto o modelo de um gerador congruencial linear | |
# int rng(int v) { | |
# return (mul*v + inc) % mod; | |
# } | |
.data | |
divisao: .asciiz", " |
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
// Exercise of the course "JavaScript - Codecademy (https://www.codecademy.com)" | |
// Student - Willian Schuck | |
// Creates the variables | |
var text = "Willian, are now programming. Please, talk with Wilbor"; | |
var myName = "Willian"; | |
var hits = []; | |
// Exercise requirements.. I will not comment them.. ;P | |
for (var c = 0; c < text.length; c++) { |
NewerOlder