Skip to content

Commit edfc8df

Browse files
authored
Update readme.md
1 parent ac3d92d commit edfc8df

File tree

1 file changed

+7
-1
lines changed
  • src/main/kotlin/g0301_0400/s0388_longest_absolute_file_path

1 file changed

+7
-1
lines changed

src/main/kotlin/g0301_0400/s0388_longest_absolute_file_path/readme.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ Here, we have `dir` as the only directory in the root. `dir` contains two subdir
1010

1111
In text form, it looks like this (with ⟶ representing the tab character):
1212

13-
dir ⟶ subdir1 ⟶ ⟶ file1.ext ⟶ ⟶ subsubdir1 ⟶ subdir2 ⟶ ⟶ subsubdir2 ⟶ ⟶ ⟶ file2.ext
13+
dir
14+
⟶ subdir1
15+
⟶ ⟶ file1.ext
16+
⟶ ⟶ subsubdir1
17+
⟶ subdir2
18+
⟶ ⟶ subsubdir2
19+
⟶ ⟶ ⟶ file2.ext
1420

1521
If we were to write this representation in code, it will look like this:
1622
`"dir\tsubdir1\t\tfile1.ext\t\tsubsubdir1\tsubdir2\t\tsubsubdir2\t\t\tfile2.ext"`. Note that the `'

0 commit comments

Comments
 (0)