function solution(tickets) {
const ticketCount = tickets.length;
tickets.sort((a,b) => {
if(a[0]<b[0]){
return 1;
}
if(a[0]===b[0] && a[1]<b[1]){
return 1;
}
return -1;
});
const map = new Map();
const graph = {};
for(const ticket of tickets){
const [from , to] = ticket;
graph[from] ? graph[from].push(to) : (graph[from] = [to]);
const key = ticket.join('');
map.set(key, map.has(key) ? map.get(key)+1 : 1);
}
const stack = [];
for(const path of tickets){
if(path[0]==='ICN'){
const newMap = new Map(map);
const key = path.join('');
newMap.set(key, newMap.get(key)-1);
stack.push([...path, newMap]);
}
}
while(stack.length){
const route = stack.pop();
const map = route.pop();
if(route.length===ticketCount+1){
return route;
}
const nextFrom = route.pop();
const nextTo = graph[nextFrom];
if(nextTo){
for(const to of nextTo){
const path = nextFrom+to;
const newMap = new Map(map);
if(newMap.get(path)){
newMap.set(path, newMap.get(path)-1)
}else{
continue;
}
stack.push([...route, nextFrom, to, newMap]);
}
}
}
}