MCPcopy Create free account
hub / github.com/codecombat/codecombat / manhattanDistance

Function manhattanDistance

app/lib/level-generation.js:969–971  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

967}
968
969function manhattanDistance (a, b) {
970 return Math.abs(a.x - b.x) + Math.abs(a.y - b.y)
971}
972
973function parseActions (code) {
974 const actions = code.trim().split('\n').map(codeToAction)

Callers 1

permuteActionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected