MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / e

Function e

CSES/Intro/GridPaths.cc:9–9  ·  view source on GitHub ↗

pruning

Source from the content-addressed store, hash-verified

7
8// pruning
9bool e(int i,int j) { return (i >= 0 && i < 7 && j < 7 && j >=0 && !vis[i][j]); }
10
11void dfs(int i,int j,int idx) {
12 if (i == 6 && j == 0) {

Callers 1

dfsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected