Update README.md

This commit is contained in:
marina 2023-08-07 17:39:51 -07:00 committed by GitHub
parent 7d89916381
commit 60c86f0759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,8 +186,12 @@ def intersect(nums1: list[int], nums2: list[int]) -> list[int]:
<br>
---
### check if anagram
<br>
```python
def is_anagram(string1, string2) -> bool:
@ -259,6 +263,8 @@ def diagonal_difference(arr):
<br>
---
### is palindrome
<br>
@ -333,7 +339,3 @@ def length_longest_substring(s) -> int:
```
<br>
---
###