Empresa | Site para mandar currículo |
---|---|
Loggi | Vagas da Loggi |
Moip Pagamentos | Vagas da Moip |
Lambda3 | Vagas da Lambda |
ReclameAqui | Vagas do ReclameAqui |
Leroy Merlin | Vagas da Leroy |
BIO Ritmo | Vagas na BIO Ritmo |
ThoughtWorks | Vagas na TW |
NuBank | Vagas na Nu |
This file contains 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 toFrom = { | |
0: "zero", | |
1: "um", | |
2: "dois", | |
3: "três", | |
4: "quatro", | |
5: "cinco", | |
6: "seis", | |
7: "sete", | |
8: "oito", |
This file contains 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
(defn my-recursive-sum | |
([numbers] (my-recursive-sum 0 numbers)) | |
([total numbers] | |
(if (empty? numbers) | |
total | |
(recur (+ (first numbers) total) (rest numbers))))) |
This file contains 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
(defn my-recursive-sum | |
([numbers] (my-recursive-sum 0 numbers)) | |
([total numbers] | |
(if (empty? numbers) | |
total | |
(my-recursive-sum (+ (first numbers) total) (rest numbers))))) |
This file contains 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
(defn hello | |
([] (hello "Eae!?")) | |
([name] (str "Eae, " name "!?"))) |
This file contains 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
(defn my-recursive-sum [total numbers] | |
(if (empty? numbers) | |
total | |
(my-recursive-sum (+ (first numbers) total) (rest numbers)))) |
This file contains 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
def my_structured_sum (numbers): | |
total = 0 | |
for number in numbers: | |
total += number | |
return total |
This file contains 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
# Simple flask app sample | |
from flask import Flask | |
app = Flask(__name__) | |
@app.route('/') | |
def index(): | |
return '<h1>Hello, pyenv!</h1>' |
Este arquivo possui um erro e você pode enviar uma sugestão de como resolver através do processo de code review, seja comentando na linha de código ou enviando uma mensagem logo abaixo do Gist.
Você consegue identificar o que está errado?
-pode ter a ver com o uso de listas no Gist *ou não
- eu nem sei mais
- faz tanto tempo que estou nessa tarefa
This file contains 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
function* generatorWithEnd() { | |
yield 1; | |
yield 2; | |
yield 3; | |
yield 4; | |
yield 5; | |
} | |
let myIterator = generatorWithEnd(); |
NewerOlder