you-think-you-are-special / delivery-service

:carousel_horse:

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Delivery service

Run

# install dependencies
npm ci

# run unit tests
npm test

# build index
# If you won't specify a path, routes.txt will be used as default source
npm run build path_to_routes.txt

# Run application
npm start

Configuration

Issues

  • Slow application start (Depends on data)
  • Memory limits
  • Consistency. If we are going to scale and update application logic
  • Also see https://12factor.net/processes

As alternative we could use db as solution. (MongoDb, Neo4J and other) Some cases could be pre calculated.

Case1

Calculate the delivery cost of the given delivery route. Follow the route as given; do not count any extra stops. In case given route is not exists, output ’No Such Route’

Welcome to ​Delivery​ Service!
Type ".help" to continue

Delivery​ ​Service.case1 A-B-E
The delivery cost for route A-B-E: 4
Delivery​ ​Service.case1 A-D
The delivery cost for route A-D: 10
Delivery​ ​Service.case1 E-A-C-F
The delivery cost for route E-A-C-F: 8
Delivery​ ​Service.case1 A-D-F
No Such Route

Case2

Calculate the number of possible delivery route that can be construct by the given conditions. ( Do not count the route that has 0 cost )

Welcome to ​Delivery​ Service!
Type ".help" to continue

Delivery​ ​Service.case2 E-D maxStops:4
The number of possible delivery route from E to D with maxCost: Infinity, maxStops: 4 and repeat: 0 - 4
Delivery​ ​Service.case2 E-E
The number of possible delivery route from E to E with maxCost: Infinity, maxStops: Infinity and repeat: 0 - 5
Delivery​ ​Service.case2 E-E maxCost:20 repeat:2
The number of possible delivery route from E to E with maxCost: 20, maxStops: Infinity and repeat: 2 - 29

Case3

Calculate the cheapest delivery route between two town (Dijkstra algorithm)

Welcome to ​Delivery​ Service!
Type ".help" to continue

Delivery​ ​Service.case3 E-D
The delivery cost for route E-D: 9
Delivery​ ​Service.case3 E-E
The delivery cost for route E-E: 6

What I used

About

:carousel_horse:

License:MIT License


Languages

Language:JavaScript 100.0%