Skip to content
Advertisement

Is there a more efficient way instead of multiple FOR loops and IF statements?

I have the below code snippet:

JavaScript

What it intends to do is rename an existing file in case of a correction – for example, I have a file called ‘File Name.xlsx’, but I want to rename it to ‘File Name –CORRECTION1.xlsx’ – it matches the file to each other and renames it.

The code works as intended, however my limited experience tells me that I’m using too many FOR loops and IF statements, and there’s probably a better way [performance wise] to do it.

So what’s my question – is there a better solution?

Advertisement

Answer

JavaScript

Edit: Removed another for loop by just looping once and checking if the files are in the directory. files_in_dir is moved into a set because set membership is a O(1) operation as opposed to O(n).

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement