Recursive function if statement mismatched types in Rust

前端 未结 0 1515
鱼传尺愫
鱼传尺愫 2020-12-12 00:13
fn recursive_binary_search(list: &mut [T], target: T) -> bool {
    if list.len() < 1 {
        return false;
    }
    let guess = list.len(         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题