Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 4, 2024
1 parent 3306479 commit 8cb4c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/src/p0022.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
exports.p0022 = function() {
const contents = require('./lib/utils.js').get_data_file('p0022_names.txt');
let names = contents.split('"').join('').split(',');
const names = contents.split('"').join('').split(',');
names.sort();
let sum = 0;
for (let i = 0; i < names.length; i += 1) {
Expand Down

0 comments on commit 8cb4c3c

Please sign in to comment.