Skip to content

Commit 23b37c6

Browse files
committed
adhering to naming conventions
1 parent 0741c20 commit 23b37c6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

c/07_trees/104_max_depth_of_binary_tree.c renamed to c/104-max-depth-of-binary-tree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "../tree.h"
1+
#include "tree.h"
22
#include <stdlib.h>
33
#include <stdio.h>
44

c/07_trees/110_check_for_balanced_binary_tree.c renamed to c/110-check-for-balanced-binary-tree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "../tree.h"
1+
#include "tree.h"
22
#include <stdlib.h>
33
#include <stdio.h>
44
#include <stdbool.h>

c/07_trees/226_invert_binary_tree.c renamed to c/226-invert-binary-tree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "../tree.h"
1+
#include "tree.h"
22
#include <stdlib.h>
33
#include <stdio.h>
44

c/07_trees/543_diameter_of_binary_tree.c renamed to c/543-diameter-of-binary-tree.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "../tree.h"
1+
#include "tree.h"
22
#include <stdlib.h>
33
#include <stdio.h>
44

0 commit comments

Comments
 (0)