Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
varun7654 committed May 12, 2024
1 parent 8bbe580 commit 1bdc112
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 22 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>WeCode</title><script defer="defer" src="/static/js/main.31b7055a.js"></script><link href="/static/css/main.17181d63.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>WeCode</title><script defer="defer" src="/static/js/main.0e59f751.js"></script><link href="/static/css/main.3d89e9e4.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
16 changes: 8 additions & 8 deletions asset-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"files": {
"main.css": "/static/css/main.17181d63.css",
"main.js": "/static/js/main.31b7055a.js",
"main.css": "/static/css/main.3d89e9e4.css",
"main.js": "/static/js/main.0e59f751.js",
"static/js/221.ed47e118.chunk.js": "/static/js/221.ed47e118.chunk.js",
"static/js/853.fb5d9004.chunk.js": "/static/js/853.fb5d9004.chunk.js",
"static/js/853.d6a7d395.chunk.js": "/static/js/853.d6a7d395.chunk.js",
"static/js/843.50ebce90.chunk.js": "/static/js/843.50ebce90.chunk.js",
"static/js/488.a8d036df.chunk.js": "/static/js/488.a8d036df.chunk.js",
"static/js/780.c1ef71a3.chunk.js": "/static/js/780.c1ef71a3.chunk.js",
Expand Down Expand Up @@ -76,10 +76,10 @@
"static/media/KaTeX_Size3-Regular.woff2": "/static/media/KaTeX_Size3-Regular.e1951519f6f0596f7356.woff2",
"static/media/github-mark-white.svg": "/static/media/github-mark-white.ac7f5ce28096dc43a49cbedeabffa77b.svg",
"index.html": "/index.html",
"main.17181d63.css.map": "/static/css/main.17181d63.css.map",
"main.31b7055a.js.map": "/static/js/main.31b7055a.js.map",
"main.3d89e9e4.css.map": "/static/css/main.3d89e9e4.css.map",
"main.0e59f751.js.map": "/static/js/main.0e59f751.js.map",
"221.ed47e118.chunk.js.map": "/static/js/221.ed47e118.chunk.js.map",
"853.fb5d9004.chunk.js.map": "/static/js/853.fb5d9004.chunk.js.map",
"853.d6a7d395.chunk.js.map": "/static/js/853.d6a7d395.chunk.js.map",
"843.50ebce90.chunk.js.map": "/static/js/843.50ebce90.chunk.js.map",
"488.a8d036df.chunk.js.map": "/static/js/488.a8d036df.chunk.js.map",
"780.c1ef71a3.chunk.js.map": "/static/js/780.c1ef71a3.chunk.js.map",
Expand All @@ -92,7 +92,7 @@
"671.5426ab3a.chunk.js.map": "/static/js/671.5426ab3a.chunk.js.map"
},
"entrypoints": [
"static/css/main.17181d63.css",
"static/js/main.31b7055a.js"
"static/css/main.3d89e9e4.css",
"static/js/main.0e59f751.js"
]
}
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>WeCode</title><script defer="defer" src="/static/js/main.31b7055a.js"></script><link href="/static/css/main.17181d63.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>WeCode</title><script defer="defer" src="/static/js/main.0e59f751.js"></script><link href="/static/css/main.3d89e9e4.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
3 changes: 1 addition & 2 deletions problems/medium/mergesort.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ sorting the two halves, and then merging them back together.
- If the array has only one element, return the array. (Base case)
- Otherwise, divide the array into two halves and recursively sort each half
3. Merge the two halves back together in sorted order.
- Note you'll probablt want to write a helper function to merge the two halves together.
You will need to define this function inside the `mergeSort` function.
- Note you'll probably want to write a helper function to merge the two halves together.
- The `merge` function should take two arrays as arguments and return a single sorted array.
- How can you use the fact that the two halves are already sorted to merge them together efficiently?
4. Return the sorted array.
Expand Down
1 change: 0 additions & 1 deletion static/css/main.17181d63.css.map

This file was deleted.

Loading

0 comments on commit 1bdc112

Please sign in to comment.