You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We could implement a feature where users can input their skills, and based on this information, the system would suggest appropriate courses tailored to their level and interests.
Describe the solution you'd like.
When a user submits their skills and level, the system will:
Retrieve courses that match the input skills.
Filter courses based on the specified skill level.
display a list of recommended courses along with brief descriptions, ratings, and links to enroll.
Is your feature request related to a problem? Please describe.
We could implement a feature where users can input their skills, and based on this information, the system would suggest appropriate courses tailored to their level and interests.
Describe the solution you'd like.
--pseudo code--
function getMatchingCourses(userSkills, userLevel) {
const courses = [
{ name: "Intro to Machine Learning", skills: ["Python", "Machine Learning"], level: "beginner" },
{ name: "Advanced Data Science", skills: ["R", "Statistics"], level: "advanced" },
}
const userSkills = ["Python", "Data Analysis"];
const userLevel = "beginner";
const recommendedCourses = getMatchingCourses(userSkills, userLevel);
console.log(recommendedCourses);
Describe alternatives you've considered.
No response
Additional context.
Filter Logic:
Show us the magic with screenshots
Checklist
The text was updated successfully, but these errors were encountered: