Skip to content

Commit

Permalink
Otavio Cardoso e Mariana Bedran
Browse files Browse the repository at this point in the history
  • Loading branch information
DojoRio committed Nov 12, 2014
1 parent 8d70983 commit 6c49ef2
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 36 deletions.
1 change: 1 addition & 0 deletions 2014/20141112 - teleport - javascript/dojo.log
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Qua Nov 12 20:53:16 BRST 2014 - Ricardo Augusto e Thiago Garcia
Qua Nov 12 21:00:46 BRST 2014 - Leonardo Ivo e Ricardo Augusto
Qua Nov 12 21:13:20 BRST 2014 - Israel Teixeira e Lucas R. Martins
Qua Nov 12 21:18:33 BRST 2014 - Mariana Bedran e Israel Teixeira
Qua Nov 12 21:24:09 BRST 2014 - Otavio Cardoso e Mariana Bedran
2 changes: 1 addition & 1 deletion 2014/20141112 - teleport - javascript/teleport.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
exports.teleport = function teleport($, origem, destino, paineis) {
var count1 = paineis[0].filter(function (botao){
return botao == 1;
return botao == destino;
}).length

return Math.pow(count1, $)
Expand Down
89 changes: 54 additions & 35 deletions 2014/20141112 - teleport - javascript/teleport_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,40 @@ var assert = require('assert'),
teleport = require('./teleport').teleport

describe('Teleporte', function () {
it('1 nave viagem de 1 para 1, duro, 1 caminho', function() {
var $ = 0,
origem = destino = 1,
paineis = [[1, 1, 1, 1]],
result = teleport($, origem, destino, paineis)

assert.equal(result, 1)
})

it('1 nave viagem de 1 para 1, com $1, 4 caminhos', function() {
var $ = 1,
origem = destino = 1,
paineis = [[1, 1, 1, 1]],
result = teleport($, origem, destino, paineis)

assert.equal(result, 4)
})

it('1 nave viagem de 1 para 1, com 2$, 16 caminhos', function() {
var $ = 2,
origem = destino = 1,
paineis = [[1, 1, 1, 1]],
result = teleport($, origem, destino, paineis)

assert.equal(result, 16)
context('1 nave viagem de 1 para 1,', function () {
var paineis, origem, destino;
beforeEach(function(){
origem = destino = 1
paineis = [[1, 1, 1, 1]]
})
it('duro, 1 caminho', function() {
var $ = 0,
result = teleport($, origem, destino, paineis)

assert.equal(result, 1)
})

it('com $1, 4 caminhos', function() {
var $ = 1,
result = teleport($, origem, destino, paineis)

assert.equal(result, 4)
})

it('com 2$, 16 caminhos', function() {
var $ = 2,
result = teleport($, origem, destino, paineis)

assert.equal(result, 16)
})

it('com 3$', function() {
var $ = 3,
result = teleport($, origem, destino, paineis)

assert.equal(result, 64)
})
})

it('1 nave viagem de 1 para 1, com 3$', function() {
var $ = 3,
origem = destino = 1,
paineis = [[1, 1, 1, 1]],
result = teleport($, origem, destino, paineis)

assert.equal(result, 64)
})

it('2 nave viagem de 1 para 1, com 1$', function() {
var $ = 1,
origem = destino = 1,
Expand Down Expand Up @@ -92,5 +90,26 @@ describe('Teleporte', function () {
assert.equal(result, 16)
})

it('2 nave viagem de 1 para 2, com 1$ sendo todos iguais', function() {
var $ = 1,
origem = 1,
destino = 2,
paineis = [[1, 1, 1, 1], [2, 2, 2, 2]],
result = teleport($, origem, destino, paineis)

assert.equal(result, 0)
})

it('2 nave viagem de 1 para 2, com 1$ sendo todos 2', function() {
var $ = 1,
origem = 1,
destino = 2,
paineis = [[2, 2, 2, 2], [2, 2, 2, 2]],
result = teleport($, origem, destino, paineis)

assert.equal(result, 4)
})



})

0 comments on commit 6c49ef2

Please sign in to comment.