mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-22 08:21:12 -04:00
Update README.md
This commit is contained in:
parent
7d89916381
commit
60c86f0759
1 changed files with 6 additions and 4 deletions
|
@ -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>
|
||||
|
||||
---
|
||||
|
||||
###
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue