Commit a3b7e2e
committed
Add missing doctests for all requested functions
- Add doctests to advanced_trie.py:
- _pattern_search_helper: Demonstrates pattern matching with wildcards
- clear: Shows trie clearing functionality
- Add doctests to segment_tree.py:
- _build: Shows recursive tree building process
- _push_lazy: Demonstrates lazy propagation mechanism
- range_update: Shows range update functionality
- query (LazySegmentTree): Shows range query functionality
- _query: Shows internal query mechanism
All doctests include:
- Clear parameter descriptions
- Working examples that demonstrate functionality
- Proper return value documentation
- Edge case coverage where applicable
This addresses all remaining algorithms-keeper bot review comments
for missing doctests on internal and public methods.1 parent cc2a179 commit a3b7e2e
2 files changed
+93
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
366 | 366 | | |
367 | 367 | | |
368 | 368 | | |
369 | | - | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
| 380 | + | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
| 386 | + | |
370 | 387 | | |
371 | 388 | | |
372 | 389 | | |
| |||
411 | 428 | | |
412 | 429 | | |
413 | 430 | | |
414 | | - | |
| 431 | + | |
| 432 | + | |
| 433 | + | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
415 | 446 | | |
416 | 447 | | |
417 | 448 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
68 | 81 | | |
69 | 82 | | |
70 | 83 | | |
| |||
232 | 245 | | |
233 | 246 | | |
234 | 247 | | |
235 | | - | |
| 248 | + | |
| 249 | + | |
| 250 | + | |
| 251 | + | |
| 252 | + | |
| 253 | + | |
| 254 | + | |
| 255 | + | |
| 256 | + | |
| 257 | + | |
| 258 | + | |
| 259 | + | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
236 | 263 | | |
237 | 264 | | |
238 | 265 | | |
| |||
252 | 279 | | |
253 | 280 | | |
254 | 281 | | |
| 282 | + | |
| 283 | + | |
| 284 | + | |
| 285 | + | |
| 286 | + | |
| 287 | + | |
255 | 288 | | |
256 | 289 | | |
257 | 290 | | |
| |||
311 | 344 | | |
312 | 345 | | |
313 | 346 | | |
| 347 | + | |
| 348 | + | |
| 349 | + | |
| 350 | + | |
| 351 | + | |
| 352 | + | |
| 353 | + | |
314 | 354 | | |
315 | 355 | | |
316 | 356 | | |
| |||
319 | 359 | | |
320 | 360 | | |
321 | 361 | | |
322 | | - | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
| 370 | + | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
| 374 | + | |
| 375 | + | |
| 376 | + | |
| 377 | + | |
| 378 | + | |
| 379 | + | |
323 | 380 | | |
324 | 381 | | |
325 | 382 | | |
| |||
0 commit comments