Skip to content

Instantly share code, notes, and snippets.

@thunder775
Created May 29, 2020 06:35
Show Gist options
  • Save thunder775/bcc67c8d246784e3e1444225a01481bf to your computer and use it in GitHub Desktop.
Save thunder775/bcc67c8d246784e3e1444225a01481bf to your computer and use it in GitHub Desktop.
call function navigate( A, T, [ AK, PT, AP, PQ, TQ, AT]){
let result = []
// tracking AK
call function navigate( K, T, [ PT, AP, PQ, TQ, AT]) {
let result = []
return result;
}
// tracking AP
call function navigate( P, T, [PT, PQ, TQ, AT]) {
let result = []
result.push(PT)
// tracking PQ
call function navigate(Q, T, [QT, AT]) {
let result = []
return result.push(QT)
}
return result.push(PQT)
}
result.push(APT)
result.push(APQT)
// tracking AT
result.push(AT)
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment