pub fn dfs( board: &Vec<Vec<char>>, word: &[char], used: &mut Vec<Vec<bool>>, i: usize, j: usize, ) -> bool