dsalgo 0.3.10

A package for Datastructures and Algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::integer_square_root_with_binary_search_u64::isqrt;

pub fn floor(n: u64) -> u64 {
    isqrt(n)
}

#[cfg(test)]

mod tests {

    #[test]

    fn test() {}
}