From f0b7e0954336cbc88e4fc0f42d9894ae4b778ca1 Mon Sep 17 00:00:00 2001 From: Manzovince Date: Fri, 12 Apr 2019 22:30:50 +0200 Subject: [PATCH] get_smallest_square file added --- srcs/get_smallest_square.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 srcs/get_smallest_square.c diff --git a/srcs/get_smallest_square.c b/srcs/get_smallest_square.c new file mode 100644 index 0000000..55a3058 --- /dev/null +++ b/srcs/get_smallest_square.c @@ -0,0 +1,16 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* get_smallest_square.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: vmanzoni +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/04/12 22:29:45 by vmanzoni #+# #+# */ +/* Updated: 2019/04/12 22:30:32 by vmanzoni ### ########.fr */ +/* */ +/* ************************************************************************** */ + +char *get_smallest_square(/*args*/) +{ + /*backtracking*/ +}