Skip to content

Commit

Permalink
Featured: add algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly.basaraba committed Jan 11, 2025
1 parent c8ea603 commit a287352
Show file tree
Hide file tree
Showing 6 changed files with 1,133 additions and 116 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Change Log

## 1.3.1 (2025-01-11)
- increase size of question to 592;
- add theme algorithm;
- increase video url to 193
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![alt text](https://github.com/fix2015/interview-questions/blob/main/image.png)

# Interview Questions CLI (466 questions)
# Interview Questions CLI (592 questions)

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.

Expand Down
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const logExampleParams = () => {
console.log("\x1b[32m%s\x1b[0m", "Params example:");
console.log("--top ${amount}");
console.log("--level ( basic | intermediate | advanced )");
console.log("--theme ( closures | storage | es6 | classes | database ... and other 203 themes)");
console.log("--theme ( algorithm, closures | storage | es6 | classes | database ... and other 203 themes)");
console.log("--format ( text | array | json )");
};

Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class InterviewQuestion {
this.options = options;
this.verbose = options.verbose || false;
this.data = require(path.resolve(__dirname, 'question.json'));
console.log('data', this.data)
}

/**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "interview-questions",
"version": "1.2.4",
"version": "1.3.1",
"main": "index.js",
"scripts": {
"test": "npx jest ./test/InterviewQuestion.test.js"
Expand Down
Loading

0 comments on commit a287352

Please sign in to comment.