Skip to content

Commit f83ac58

Browse files
rajenderthotaidoocs
authored andcommitted
style: format code and docs with prettier
1 parent db9eb43 commit f83ac58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

solution/1900-1999/1948.Delete Duplicate Folders in System/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ class Solution {
150150

151151
public List<List<String>> deleteDuplicateFolder(List<List<String>> paths) {
152152
TrieNode root = new TrieNode("");
153-
153+
154154
// Step 1: Build the folder trie
155155
for (List<String> path : paths) {
156156
TrieNode curr = root;

solution/1900-1999/1948.Delete Duplicate Folders in System/README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class Solution {
129129

130130
public List<List<String>> deleteDuplicateFolder(List<List<String>> paths) {
131131
TrieNode root = new TrieNode("");
132-
132+
133133
// Step 1: Build the folder trie
134134
for (List<String> path : paths) {
135135
TrieNode curr = root;

0 commit comments

Comments
 (0)