Skip to content

Commit c19a389

Browse files
committed
#1662: improve formatting
1 parent 2ded459 commit c19a389

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

c-sharp/Problems/arrays-and-hashing/CheckIfTwoStringArraysAreEquivalent.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* return true if the two arrays represent the same string,
77
* and false otherwise.
88
*
9-
* A string is represented by an array if the array elements concatenated in order forms the string.
9+
* A string is represented by an array
10+
* if the array elements concatenated in order forms the string.
1011
*
1112
* Example 1:
1213
* Input: word1 = ["ab", "c"], word2 = ["a", "bc"]
@@ -31,11 +32,13 @@
3132
* • word1[i] and word2[i] consist of lowercase letters.
3233
*
3334
* Hint 1:
34-
* Concatenate all strings in the first array into a single string in the given order,
35+
* Concatenate all strings in the first array
36+
* into a single string in the given order,
3537
* the same for the second array.
3638
*
3739
* Hint 2:
38-
* Both arrays represent the same string if and only if the generated strings are the same.
40+
* Both arrays represent the same string
41+
* if and only if the generated strings are the same.
3942
**
4043
* https://leetcode.com/problems/check-if-two-string-arrays-are-equivalent/
4144
***/

0 commit comments

Comments
 (0)