Skip to content

Commit a287352

Browse files
author
vitaly.basaraba
committed
Featured: add algorithm
1 parent c8ea603 commit a287352

File tree

6 files changed

+1133
-116
lines changed

6 files changed

+1133
-116
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Change Log
2+
3+
## 1.3.1 (2025-01-11)
4+
- increase size of question to 592;
5+
- add theme algorithm;
6+
- increase video url to 193

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![alt text](https://github.com/fix2015/interview-questions/blob/main/image.png)
22

3-
# Interview Questions CLI (466 questions)
3+
# Interview Questions CLI (592 questions)
44

55
Welcome to the **Interview Questions CLI**, a powerful tool designed for users learning JavaScript and practicing coding every day. This repository provides a collection of interview questions categorized by difficulty level, allowing you to learn and improve your skills anytime, directly from your terminal.
66

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const logExampleParams = () => {
1818
console.log("\x1b[32m%s\x1b[0m", "Params example:");
1919
console.log("--top ${amount}");
2020
console.log("--level ( basic | intermediate | advanced )");
21-
console.log("--theme ( closures | storage | es6 | classes | database ... and other 203 themes)");
21+
console.log("--theme ( algorithm, closures | storage | es6 | classes | database ... and other 203 themes)");
2222
console.log("--format ( text | array | json )");
2323
};
2424

index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class InterviewQuestion {
1717
this.options = options;
1818
this.verbose = options.verbose || false;
1919
this.data = require(path.resolve(__dirname, 'question.json'));
20+
console.log('data', this.data)
2021
}
2122

2223
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interview-questions",
3-
"version": "1.2.4",
3+
"version": "1.3.1",
44
"main": "index.js",
55
"scripts": {
66
"test": "npx jest ./test/InterviewQuestion.test.js"

0 commit comments

Comments
 (0)