# Introduction

# Getting Started

TIP

If you want to go straight to the point, you can just use the template repo (opens new window). When you're done, you will need to check out how to put input data.

To get started you need to install aoct.

npm i aoct

It's recommended simplify your run command, by adding the following script to your package.json:

"scripts": {
  "start": "npx aoct start"
},

Select your day and you're ready to go! 🎉

npm start day1

Now, you'll need to add input problems data. Learn how.

# TypeScript

If you are interested in solving problems with TypeScript, you have to specify it via config. Create aoct.json specifying TypeScript compiler. See more about config file here.

{
  "compiler": "ts"
}