npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

challange-mars-rovers

v1.1.0

Published

A squad of robotic rovers are to be landed by NASA on a plateau on Mars. This plateau, which is curiously rectangular, must be navigated by the rovers so that their on-board cameras can get a complete view of the surrounding terrain to send back to Earth.

Downloads

12

Readme

Challange - Mars Rovers

NPM Maintainability Test Coverage CircleCI

Description

A squad of robotic rovers are to be landed by NASA on a plateau on Mars. This plateau, which is curiously rectangular, must be navigated by the rovers so that their on-board cameras can get a complete view of the surrounding terrain to send back to Earth.

A rover’s position and location is represented by a combination of x and y coordinates and a letter representing one of the four cardinal compass points. The plateau is divided up into a grid to simplify navigation. An example position might be 0, 0, N, which means the rover is in the bottom left corner and facing North.

In order to control a rover, NASA sends a simple string of letters. The possible letters are ‘L’, ‘R’ and ‘M’. ‘L’ and ‘R’ makes the rover spin 90 degrees left or right respectively, without moving from its current spot. ‘M’ means move forward one grid point, and maintain the same heading.

Assume that the square directly North from (x, y) is (x, y+1).

Input

The first line of input is the upper-right coordinates of the plateau, the lower-left coordinates are assumed to be 0,0.

The rest of the input is information pertaining to the rovers that have been deployed. Each rover has two lines of input. The first line gives the rover’s position, and the second line is a series of instructions telling the rover how to explore the plateau.

The position is made up of two integers and a letter separated by spaces, corresponding to the x and y coordinates and the rover’s orientation.

Each rover will be finished sequentially, which means that the second rover won’t start to move until the first one has finished moving.

Output

The output for each rover should be its final coordinates and heading. Input and

Test Input:

  • Plateau size: 5x5
  • Rover 1 deploy zone: 1 2 N
  • Rover 1 movement: LMLMLMLMM
  • Rover 2 deploy zone: 3 3 E
  • Rover 2 movement: MMRMMRMRRM

Expected Output:

  • Rover 1 position: 1 3 N
  • Rover 2 position: 5 1 E

Install

$ npm install challange-mars-rovers

Usage

const {Rover, RoverCommand} = require('challange-mars-rovers')

/**************************************
 * 1. Using the Rover Command
 **************************************/
 
// input rover data from text file or pass it as an array or string 
// (see tests for more examples)
const RoverCommandMars = new RoverCommand([
  'Rover 1;1 2 N;LMLMLMLMM',
  'Rover 2;3 3 E;MMRMMRMRRM'
])
RoverCommandMars.deploy()
  .then(() => RoverCommandMars.move())
  .then(() => {
    const rovers = RoverCommandMars.getRovers()
    console.log('RoverCommand - Rover1 coordinates:' + rovers['Rover 1'].getCoordinates()) // '1 3 N'
    console.log('RoverCommand - Rover2 coordinates:' + rovers['Rover 2'].getCoordinates()) // '5 1 E'
  })     

/**************************************
 * 2. Using the Rovers directly
 **************************************/
 
// deploy rover to given start zone
const Rover3 = new Rover(3, 3, 'E')
// move rover
Rover3.command('MMRMMRMRRM').then(() => {
  console.log(`Rover3 x: ${Rover3.getX()}`)                     // output: 5
  console.log(`Rover3 y: ${Rover3.getY()}`)                     // output: 1
  console.log(`Rover3 direction: ${Rover3.getDirection()}`)     // output: E
  console.log(`Rover3 coordinates: ${Rover3.getCoordinates()}`) // output: 5 1 E
})

Test

// inside the repository
$ npm install 
$ npm run test

License

MIT © Grzegorz Leoniec (@WillKnowThat)