(N)
| 11 | }; |
| 12 | |
| 13 | var JigsawPuzzle = function(N) { |
| 14 | this.jigsawGraph = this.genPieces(N); |
| 15 | this.N = N; |
| 16 | }; |
| 17 | |
| 18 | JigsawPuzzle.prototype.genPieces = function(N) { |
| 19 | var graph = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected