|
2 | 2 |
|
3 | 3 | const fs = require('fs');
|
4 | 4 |
|
5 |
| -const PROBLEMS_OBJ = JSON.parse(fs.readFileSync('./.problemList.json', 'utf8')); |
6 | 5 | const PROBLEMS_SITE_DATA = JSON.parse(fs.readFileSync('./.problemSiteData.json', 'utf8'));
|
7 | 6 |
|
8 | 7 | const languages = [
|
@@ -88,72 +87,29 @@ for (const lang of languages) {
|
88 | 87 | console.log(`This many files in ${langDir}: ${files.length}`);
|
89 | 88 |
|
90 | 89 | let counter = 0;
|
91 |
| - for (const category in PROBLEMS_OBJ) { |
92 |
| - for (const problem of PROBLEMS_OBJ[category]) { |
93 |
| - const url = problem[1]; |
94 |
| - |
95 |
| - // Use leetcode url path to rename each problem for consistency |
96 |
| - let problemName = problem[1].replace('https://leetcode.com/problems/', ''); |
97 |
| - const problemUrlName =`${problemName}`; // deep copy problemName; |
98 |
| - problemName = problemName.replace('/', '').toLowerCase(); |
99 |
| - |
100 |
| - // Use problem number to find each problem |
101 |
| - const problemNumber = problem[2]; |
102 |
| - const newProblemNumber = updateProblemNumber(problem[2]); |
103 |
| - |
104 |
| - const foundFile = files.find(file => file.name.startsWith(`${problemNumber.toString()}-`)); |
105 |
| - if (foundFile && foundFile.isFile()) { |
106 |
| - // rename file to match leetcode url path |
107 |
| - const oldFile = `${langDir}/${foundFile.name}`; |
108 |
| - const newFile = `${langDir}/${newProblemNumber}-${problemName}.${langExt}`; |
109 |
| - if (oldFile !== newFile) { |
110 |
| - fs.renameSync(oldFile, newFile); |
111 |
| - counter++; |
112 |
| - } |
113 |
| - updateSiteData(problemUrlName, `${newProblemNumber}-${problemName}`, langDir); |
| 90 | + for (const problem of PROBLEMS_SITE_DATA) { |
| 91 | + let problemName = problem['link'].replace('/', '').toLowerCase(); |
| 92 | + |
| 93 | + // Use problem number to find code file |
| 94 | + const problemNumber = problem['code'].split('-')[0]; |
| 95 | + const foundFile = files.find(file => file.name.startsWith(`${problemNumber.toString()}-`)); |
| 96 | + |
| 97 | + if (foundFile && foundFile.isFile()) { |
| 98 | + // rename file to match leetcode url path |
| 99 | + const oldFile = `${langDir}/${foundFile.name}`; |
| 100 | + const newFile = `${langDir}/${problemNumber}-${problemName}.${langExt}`; |
| 101 | + if (oldFile !== newFile) { |
| 102 | + fs.renameSync(oldFile, newFile); |
| 103 | + counter++; |
114 | 104 | }
|
| 105 | + problem[langDir] = true; // add language to problemSiteData |
115 | 106 | }
|
116 | 107 | }
|
117 | 108 | console.log(`Renamed ${counter} files in ${langDir}, which had ${files.length} total files.`);
|
118 | 109 | }
|
119 | 110 |
|
120 |
| -// Add leading zeros to make four digits long (24 -> 0024) |
121 |
| -function updateProblemNumber(problemNumberInt) { |
122 |
| - let problemNumber = problemNumberInt.toString(); |
123 |
| - while (problemNumber.length < 4) { |
124 |
| - problemNumber = '0' + problemNumber; |
125 |
| - } |
126 |
| - return problemNumber; |
127 |
| -} |
128 |
| - |
129 |
| -function updateSiteData(problemUrlName, newCodeLink, langName) { |
130 |
| - for (const p of PROBLEMS_SITE_DATA) { |
131 |
| - // TODO: Bug here where some problem names are too similar (e.g. LC 300 and LC 673) |
132 |
| - if (problemUrlName === p.link) { |
133 |
| - p.code = newCodeLink; |
134 |
| - p[langName] = true; |
135 |
| - return; |
136 |
| - } |
137 |
| - } |
138 |
| - console.log(`Could not find ${problemUrlName} in PROBLEMS_SITE_DATA for ${langName}.`); |
139 |
| -} |
140 |
| - |
141 |
| - |
| 111 | +// Write updated problemSiteData to file |
142 | 112 | fs.writeFile('./.problemSiteData.json', JSON.stringify(PROBLEMS_SITE_DATA), function (err) {
|
143 | 113 | if (err) throw err;
|
144 | 114 | console.log('Saved!');
|
145 | 115 | });
|
146 |
| - |
147 |
| - |
148 |
| -/** Update problem numbers in .problemList.json */ |
149 |
| - |
150 |
| -// for (const category in PROBLEMS_OBJ) { |
151 |
| -// for (const problem of PROBLEMS_OBJ[category]) { |
152 |
| -// problem[2] = updateProblemNumber(problem[2]); |
153 |
| -// } |
154 |
| -// } |
155 |
| - |
156 |
| -// fs.writeFile('./.problemList.json', JSON.stringify(PROBLEMS_OBJ), function (err) { |
157 |
| -// if (err) throw err; |
158 |
| -// console.log('Saved!'); |
159 |
| -// }); |
0 commit comments