Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let possible_squares_by_path n m l = match l with
- | [] -> []
- | h::t -> List.filter (fun c -> not (List.mem c l)) (possible_squares n m h)
- ;;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement