https://github.com/valentinofilipetto/adventoftypescript2023
Repo containing the solutions I worked out for AdventOfTypeScript 2023
https://github.com/valentinofilipetto/adventoftypescript2023
advent-of-typescript typescript
Last synced: 3 months ago
JSON representation
Repo containing the solutions I worked out for AdventOfTypeScript 2023
- Host: GitHub
- URL: https://github.com/valentinofilipetto/adventoftypescript2023
- Owner: ValentinoFilipetto
- Created: 2023-12-22T09:09:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-11T14:21:50.000Z (over 1 year ago)
- Last Synced: 2024-01-12T00:15:22.462Z (over 1 year ago)
- Topics: advent-of-typescript, typescript
- Language: TypeScript
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of TypeScript 2023
## Content
This repository contains the challenges I was able to solve as part of the advent of TypeScript 2023 event. Each folder contains a challenge and a markdown file in which I state the challenge and I explain my solution. As a sidenote, I think these challenges are a very nice way to learn TypeScript as they are very hands-on and practical. This way a developer can avoid tutorial hell and actually practice the concept they learn.
## Check out this repo
After cloning it, go to the project repo and run
```
> pnpm install
```## Navigate the challenges from here
| Day | Code |
| ------ | ------------------------------ |
| Day 1 | [Solution](src/day01/day01.ts) |
| Day 2 | [Solution](src/day02/day02.ts) |
| Day 3 | [Solution](src/day03/day03.ts) |
| Day 4 | [Solution](src/day04/day04.ts) |
| Day 5 | [Solution](src/day05/day05.ts) |
| Day 6 | [Solution](src/day06/day06.ts) |
| Day 7 | [Solution](src/day07/day07.ts) |
| Day 8 | [Solution](src/day08/day08.ts) |
| Day 9 | [Solution](src/day09/day09.ts) |
| Day 10 | [Solution](src/day10/day10.ts) |
| Day 11 | [Solution](src/day11/day11.ts) |
| Day 12 | [Solution](src/day12/day12.ts) |