Skip to content

Instantly share code, notes, and snippets.

View matheustanaka's full-sized avatar
:shipit:
cooking

Matheus Tanaka matheustanaka

:shipit:
cooking
View GitHub Profile
@matheustanaka
matheustanaka / main.go
Created October 4, 2024 00:09
dojo-golangsp
package main
import "fmt"
// https://judge.beecrowd.com/pt/problems/view/1168
func main() {
quantidadeInput := 0
// fmt.Println("Digite a quantidade de entradas")
fmt.Scanln(&quantidadeInput)
@matheustanaka
matheustanaka / index.js
Last active January 2, 2023 17:07
Script para ficar online no teams
// Primeira instrucao: abrir o console do navegador, use f12 ou ctrl+shift+i
// Copiar o código abaixo, colar e pressionar enter
function typeArray(inputElement, stringArray) {
for (let i = 0; i < stringArray.length; i++) {
setTimeout(function() {
inputElement.value += stringArray[i]; //O input vai receber cada palavra que estiver dentro do stringArray
}, i * 300000);
}
}