Skip to content

Commit 4e0e473

Browse files
Restyled by whitespace
1 parent 46a10ad commit 4e0e473

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dsa-solutions/lc-solutions/0400-0499/0493-reverse-pairs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ return mergeSort(nums, 0, nums.length - 1);
110110

111111
</TabItem>
112112
<TabItem value="TypeScript" label="TypeScript">
113-
<SolutionAuthor name="@Ishitamukherjee2004"/>
113+
<SolutionAuthor name="@Ishitamukherjee2004"/>
114114
```typescript
115115
function mergeSortedArrays(nums: number[], left: number, mid: number, right: number, temp: number[]) {
116116
let i = left, j = mid + 1, k = 0;
@@ -151,7 +151,7 @@ return mergeSort(nums, 0, nums.length - 1);
151151
```
152152

153153
</TabItem>
154-
<TabItem value="Python" label="Python">
154+
<TabItem value="Python" label="Python">
155155
<SolutionAuthor name="@Ishitamukherjee2004"/>
156156
```python
157157
def merge_sorted_arrays(nums, left, mid, right, temp):
@@ -299,7 +299,7 @@ return mergeSort(nums, 0, nums.size() - 1);
299299
300300
};
301301
```
302-
</TabItem>
302+
</TabItem>
303303
</Tabs>
304304

305305
### Complexity Analysis

src/pages/showcase/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,4 +468,4 @@ export default function Showcase(): JSX.Element {
468468
</main>
469469
</Layout>
470470
);
471-
}
471+
}

0 commit comments

Comments
 (0)