Skip to content

Commit 5d40513

Browse files
author
Kohei Asai
committed
Initial Commit
0 parents  commit 5d40513

File tree

6 files changed

+5104
-0
lines changed

6 files changed

+5104
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/*

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# LeetCode answers in TypeScript
2+
3+
- 🏃‍♀️ Enough Small Time Complexity
4+
- (Not "Minimum" because of No Micro Optimization)
5+
- 💯 100% TypeScript
6+
- ✅ Fully tested
7+
- 🗣 With Description Comments

jest.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
preset: "ts-jest",
3+
testEnvironment: "node",
4+
testMatch: ["**/*.ts"]
5+
};

0 commit comments

Comments
 (0)