mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 15:36:29 +08:00
Compare commits
2 commits
de20d32ed6
...
ee1460b8d0
Author | SHA1 | Date | |
---|---|---|---|
|
ee1460b8d0 | ||
|
bc0e32af57 |
4 changed files with 8 additions and 4 deletions
|
@ -46,7 +46,8 @@ class GraphAdjList {
|
||||||
if (
|
if (
|
||||||
!this.adjList.has(vet1) ||
|
!this.adjList.has(vet1) ||
|
||||||
!this.adjList.has(vet2) ||
|
!this.adjList.has(vet2) ||
|
||||||
vet1 === vet2
|
vet1 === vet2 ||
|
||||||
|
this.adjList.get(vet1).indexOf(vet2) === -1
|
||||||
) {
|
) {
|
||||||
throw new Error('Illegal Argument Exception');
|
throw new Error('Illegal Argument Exception');
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,8 @@ class GraphAdjList {
|
||||||
if (
|
if (
|
||||||
!this.adjList.has(vet1) ||
|
!this.adjList.has(vet1) ||
|
||||||
!this.adjList.has(vet2) ||
|
!this.adjList.has(vet2) ||
|
||||||
vet1 === vet2
|
vet1 === vet2 ||
|
||||||
|
this.adjList.get(vet1).indexOf(vet2) === -1
|
||||||
) {
|
) {
|
||||||
throw new Error('Illegal Argument Exception');
|
throw new Error('Illegal Argument Exception');
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,8 @@ class GraphAdjList {
|
||||||
if (
|
if (
|
||||||
!this.adjList.has(vet1) ||
|
!this.adjList.has(vet1) ||
|
||||||
!this.adjList.has(vet2) ||
|
!this.adjList.has(vet2) ||
|
||||||
vet1 === vet2
|
vet1 === vet2 ||
|
||||||
|
this.adjList.get(vet1).indexOf(vet2) === -1
|
||||||
) {
|
) {
|
||||||
throw new Error('Illegal Argument Exception');
|
throw new Error('Illegal Argument Exception');
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,8 @@ class GraphAdjList {
|
||||||
if (
|
if (
|
||||||
!this.adjList.has(vet1) ||
|
!this.adjList.has(vet1) ||
|
||||||
!this.adjList.has(vet2) ||
|
!this.adjList.has(vet2) ||
|
||||||
vet1 === vet2
|
vet1 === vet2 ||
|
||||||
|
this.adjList.get(vet1).indexOf(vet2) === -1
|
||||||
) {
|
) {
|
||||||
throw new Error('Illegal Argument Exception');
|
throw new Error('Illegal Argument Exception');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue