HackerTrans
TopNewTrendsCommentsPastAskShowJobs

math-hiyoko

no profile record

Submissions

Show HN: Fast Sudoku solver that enumerates all solutions

sudoku-solver.piyochan.jp
1 points·by math-hiyoko·vor 5 Monaten·0 comments

Show HN: FM-index – Rust-powered substring search for Python

pypi.org
2 points·by math-hiyoko·vor 6 Monaten·0 comments

Show HN: High-Performance Wavelet Matrix for Python, Implemented in Rust

pypi.org
93 points·by math-hiyoko·vor 7 Monaten·10 comments

comments

math-hiyoko
·vor 7 Monaten·discuss
Thanks for the feedback! You're right, just listing features doesn't make the use cases very clear. I'm planning to add more concrete, real-world examples to the README and examples to better show where wavelet matrices really shine.
math-hiyoko
·vor 7 Monaten·discuss
No, the library itself does not use unsafe Rust at all. The Python bindings are built using PyO3, which internally uses unsafe (as required to interface with the CPython C API), but that is fully encapsulated within PyO3. The core data structure and algorithms remain purely safe Rust.