Skip to content

Commit

Permalink
Merge pull request #6 from CodeCrew-CodeSchool/webapp
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
ConnerKT authored Mar 26, 2024
2 parents cdcb59a + dda57de commit 1f72456
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/models/problem.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const problemSchema = new mongoose.Schema({
title: String,
difficulty: String,
description: String,
link: String
link: String,
},{
versionKey: false
});
Expand Down
2 changes: 1 addition & 1 deletion server/seedData.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const problemsData = [
"title": "Merge Numbers",
"difficulty": "Medium",
"description": "Given an test of test where test[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals that cover all the intervals in the input.",
"links": "https://leetcode.com/"
"link": "https://leetcode.com/"
}
];

Expand Down

0 comments on commit 1f72456

Please sign in to comment.