Skip to content

Commit c25cfcc

Browse files
fix: stash sonrası düzenlemeler
1 parent 0666594 commit c25cfcc

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

strings/suffix_array.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
<<<<<<< HEAD
2-
"""
3-
suffix_array.py
4-
5-
Professional implementation of Suffix Array and LCP (Longest Common Prefix) array in Python.
6-
7-
Features:
8-
- Efficient O(n log n) construction using doubling method
9-
- Kasai's algorithm for LCP array in O(n)
10-
- Detailed docstrings and complexity analysis
11-
- Standalone usage example and simple unit tests
12-
13-
Author: Idris Ibrahim Erten
14-
License: MIT
15-
"""
16-
17-
18-
=======
19-
>>>>>>> c176d091 (feat(strings): add professional suffix array and LCP implementation)
201
def build_suffix_array(s: str) -> list[int]:
212
# Append a sentinel that is lexicographically smaller than all other characters
223
s += "\0"

0 commit comments

Comments
 (0)