-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtrainMerger.js
55 lines (52 loc) · 1.87 KB
/
trainMerger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module.exports = class VehicleTrain {
constructor(dataInput) {
this.dataInput = dataInput;
this.station_after_HYB = {"HYB": 0, "NGP": 400, "ITJ": 700, "BPL": 800,
"AGA": 2500, "NDL": 2700, "PTA": 3800, "NJP": 4200, "GHY": 4700}
this.DeptTrain =[];
}
printTrainA(input){
let arrA = ['ARRIVAL' ,'TRAIN_A' ,'ENGINE']
let arr=[];
let tempBoggie=[];
for(let i=2;i<input.length;i++){
if(this.station_after_HYB.hasOwnProperty(input[i].trim())){
arr.push(input[i]);
let trainObj = new Object();
trainObj ={name:input[i].trim(),
id:this.station_after_HYB[input[i].trim()]
}
tempBoggie.push(trainObj);
}
}
let boggieList = arrA.concat(arr);
let boggie = boggieList.toString()
const search = ',';
const replaceWith = ' ';
const result = boggie.split(search).join(replaceWith);
console.log(result.trim())
return tempBoggie;
}
printTrainB(input){
let arrA = ['ARRIVAL','TRAIN_B' ,'ENGINE']
let arr=[];
let tempBoggie=[];
for(let i=2;i<input.length;i++){
if(this.station_after_HYB.hasOwnProperty(input[i].trim())){
arr.push(input[i]);
let trainObj = new Object();
trainObj ={name:input[i].trim(),
id:this.station_after_HYB[input[i].trim()]
}
tempBoggie.push(trainObj);
}
}
let boggieList = arrA.concat(arr);
let boggie = boggieList.toString()
const search = ',';
const replaceWith = ' ';
const result = boggie.split(search).join(replaceWith);
console.log(result.trim())
return tempBoggie;
}
}