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
"description": "How to find string in a big-sized file Original source: https://github.com/koorchik/jabascript-materials/tree/main/inverted-index # How it works 1. Run map.js to create file with key-value pairs - node map.js >./pairs.data (add file path inside map.js) 2. Sort the file - sort -k1,1 ./pairs.data >./sorted.data (add file path inside sort command) 3. Run index.js to find the key - node index.js (add string key inside index.js)",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"