Commit graph

1 commit

Author SHA1 Message Date
4f02db2da7
feat: add Intersperse function (#46)
- Add Intersperse: inserts separator between each element
- Pre-allocated for optimal performance
- Comprehensive tests including edge cases
- Benchmark included

Example: Intersperse([1,2,3], 0) → [1,0,2,0,3]

Resolves Issue 18

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
2025-11-16 08:54:10 +01:00