Skip to content

Commit 76c16f6

Browse files
Update README.md
1 parent 0e4b2b2 commit 76c16f6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

top 150/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ function lengthOfLongestSubstring(s: string): number {
4545
return longesSubstring;
4646
}
4747
```
48-
<summary> <strong>4. Median of Two Sorted Arrays</strong> </summary>
49-
<br>
48+
</details>
49+
##### 4. Median of Two Sorted Arrays
5050
Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.
5151

5252
The overall run time complexity should be O(log (m+n)).
@@ -138,8 +138,6 @@ function findMedianSortedArrays(nums1: number[], nums2: number[]): number {
138138
}
139139
}
140140
```
141-
</details>
142-
143141
30-31.03.2023:
144142
##### 5. Longest Palindromic Substring
145143
Given a string s, return the longest palindromic substring in s.

0 commit comments

Comments
 (0)