Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 637 Bytes

File metadata and controls

17 lines (10 loc) · 637 Bytes

Introduction

This is a skeleton project structure for problems that expects an integer array as input which will help you start solving the problem right away.

Tools available to you.

  • Node.js

Checking for correctness

  • You can click on the Run IO button from the interview application, which will run your solution against some preconfigured inputs and show you the output.

Running the project

  • To run, issue the command node . '<input>' where input is a valid input given in the problem statement.
  • For example: node . '[1, 2, 3, 4, 5, 6, 7]'

Note: Each full command should be wrapped in single quotes.