aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-344/vinod-k/perl/ch-2.pl3
-rw-r--r--challenge-344/vinod-k/python/ch-1.py2
-rw-r--r--challenge-344/vinod-k/python/ch-2.py1
3 files changed, 1 insertions, 5 deletions
diff --git a/challenge-344/vinod-k/perl/ch-2.pl b/challenge-344/vinod-k/perl/ch-2.pl
index b55bbf6efa..777564f34e 100644
--- a/challenge-344/vinod-k/perl/ch-2.pl
+++ b/challenge-344/vinod-k/perl/ch-2.pl
@@ -27,12 +27,10 @@ sub can_build_target {
last;
}
}
-
unless ($match_found_in_cycle) {
return (0, []);
}
}
-
return (1, \@used_order);
}
@@ -124,4 +122,3 @@ say "Output: " . ($result5 ? 'true' : 'false');
if ($result5) {
say "Use in the order: " . format_array_of_arrays(\@order5);
}
-
diff --git a/challenge-344/vinod-k/python/ch-1.py b/challenge-344/vinod-k/python/ch-1.py
index 244429f7e8..1f1d8ddd27 100644
--- a/challenge-344/vinod-k/python/ch-1.py
+++ b/challenge-344/vinod-k/python/ch-1.py
@@ -55,4 +55,4 @@ output5 = add_to_array_form(ints5, x5)
print(f"Input Array: {ints5}")
print(f"Input X: {x5}")
-print(f"Output Array: {output5}\n") \ No newline at end of file
+print(f"Output Array: {output5}\n")
diff --git a/challenge-344/vinod-k/python/ch-2.py b/challenge-344/vinod-k/python/ch-2.py
index 618a653970..533dbf0e3b 100644
--- a/challenge-344/vinod-k/python/ch-2.py
+++ b/challenge-344/vinod-k/python/ch-2.py
@@ -100,4 +100,3 @@ print(f"Output: {str(result5).lower()}")
if result5:
print(f"Use in the order: {format_list_of_lists(order5)}")
-print("\n") \ No newline at end of file