daily-challenge
v1.0.3
Published
Daily Coding Challenge
Maintainers
Readme
📦 daily-challenge
A lightweight npm package that gives you a new coding challenge every day to practice arrays, strings, and logic building in JavaScript. Perfect for beginners and interview preparation!
✨ Features
- 🎯 Get a random coding challenge each time you run it
- 📅 Use it daily to improve problem-solving skills
- 📚 Includes challenges on arrays, strings, and number problems
- 💡 Beginner-friendly and useful for interview practice
📦 Installation
npm install daily-challenge
🛠 Example (in Node.js project)
import getChallenge from "daily-challenge";
console.log("Your daily challenge:");
console.log(getChallenge);
Output:
Your daily challenge:
Separate odd and even numbers into two arrays
