diff options
Diffstat (limited to 'challenge-101')
| -rw-r--r-- | challenge-101/paulo-custodio/ada/ch_1.adb | 7 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/ada/ch_2.adb | 2 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/basic/ch-1.bas | 5 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/basic/ch-2.bas | 2 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/lua/ch-1.lua | 5 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/lua/ch-2.lua | 2 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/perl/ch-1.pl | 5 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/perl/ch-2.pl | 2 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/python/ch-1.py | 5 | ||||
| -rw-r--r-- | challenge-101/paulo-custodio/python/ch-2.py | 2 |
10 files changed, 36 insertions, 1 deletions
diff --git a/challenge-101/paulo-custodio/ada/ch_1.adb b/challenge-101/paulo-custodio/ada/ch_1.adb index 825cb53996..fd9f20df4c 100644 --- a/challenge-101/paulo-custodio/ada/ch_1.adb +++ b/challenge-101/paulo-custodio/ada/ch_1.adb @@ -1,4 +1,9 @@ --- You are given an array @A of items (integers say, but they can be anything). +-- Challenge 101 +-- +-- TASK #1 › Pack a Spiral +-- Submitted by: Stuart Little +-- +-- -- You are given an array @A of items (integers say, but they can be anything). -- -- Your task is to pack that array into an MxN matrix spirally counterclockwise, -- as tightly as possible. diff --git a/challenge-101/paulo-custodio/ada/ch_2.adb b/challenge-101/paulo-custodio/ada/ch_2.adb index 37a6384012..f52e3faa33 100644 --- a/challenge-101/paulo-custodio/ada/ch_2.adb +++ b/challenge-101/paulo-custodio/ada/ch_2.adb @@ -1,3 +1,5 @@ +-- Challenge 101 +-- -- TASK #2 › Origin-containing Triangle -- Submitted by: Stuart Little -- You are given three points in the plane, as a list of six co-ordinates: diff --git a/challenge-101/paulo-custodio/basic/ch-1.bas b/challenge-101/paulo-custodio/basic/ch-1.bas index 948f35eea7..f958245d3e 100644 --- a/challenge-101/paulo-custodio/basic/ch-1.bas +++ b/challenge-101/paulo-custodio/basic/ch-1.bas @@ -1,3 +1,8 @@ +' Challenge 101 +' +' TASK #1 › Pack a Spiral +' Submitted by: Stuart Little +' ' You are given an array @A of items (integers say, but they can be anything). ' ' Your task is to pack that array into an MxN matrix spirally counterclockwise, diff --git a/challenge-101/paulo-custodio/basic/ch-2.bas b/challenge-101/paulo-custodio/basic/ch-2.bas index 9a54875dc4..30c62f9fb6 100644 --- a/challenge-101/paulo-custodio/basic/ch-2.bas +++ b/challenge-101/paulo-custodio/basic/ch-2.bas @@ -1,3 +1,5 @@ +' Challenge 101 +' ' TASK #2 › Origin-containing Triangle ' Submitted by: Stuart Little ' You are given three points in the plane, as a list of six co-ordinates: diff --git a/challenge-101/paulo-custodio/lua/ch-1.lua b/challenge-101/paulo-custodio/lua/ch-1.lua index 168993f879..7eac6f60f5 100644 --- a/challenge-101/paulo-custodio/lua/ch-1.lua +++ b/challenge-101/paulo-custodio/lua/ch-1.lua @@ -1,6 +1,11 @@ #!/usr/bin/env lua --[[ +Challenge 101 + +TASK #1 › Pack a Spiral +Submitted by: Stuart Little + You are given an array @A of items (integers say, but they can be anything). Your task is to pack that array into an MxN matrix spirally counterclockwise, diff --git a/challenge-101/paulo-custodio/lua/ch-2.lua b/challenge-101/paulo-custodio/lua/ch-2.lua index a748e1bd02..47a12b657e 100644 --- a/challenge-101/paulo-custodio/lua/ch-2.lua +++ b/challenge-101/paulo-custodio/lua/ch-2.lua @@ -1,6 +1,8 @@ #!/usr/bin/env lua --[[ +Challenge 101 + TASK #2 › Origin-containing Triangle Submitted by: Stuart Little You are given three points in the plane, as a list of six co-ordinates: diff --git a/challenge-101/paulo-custodio/perl/ch-1.pl b/challenge-101/paulo-custodio/perl/ch-1.pl index 3e637254fb..b203d06266 100644 --- a/challenge-101/paulo-custodio/perl/ch-1.pl +++ b/challenge-101/paulo-custodio/perl/ch-1.pl @@ -1,5 +1,10 @@ #!/usr/bin/perl +# Challenge 101 +# +# TASK #1 › Pack a Spiral +# Submitted by: Stuart Little +# # You are given an array @A of items (integers say, but they can be anything). # # Your task is to pack that array into an MxN matrix spirally counterclockwise, diff --git a/challenge-101/paulo-custodio/perl/ch-2.pl b/challenge-101/paulo-custodio/perl/ch-2.pl index c95d924af1..b5e7a71f64 100644 --- a/challenge-101/paulo-custodio/perl/ch-2.pl +++ b/challenge-101/paulo-custodio/perl/ch-2.pl @@ -1,5 +1,7 @@ #!/usr/bin/perl +# Challenge 101 +# # TASK #2 › Origin-containing Triangle # Submitted by: Stuart Little # You are given three points in the plane, as a list of six co-ordinates: diff --git a/challenge-101/paulo-custodio/python/ch-1.py b/challenge-101/paulo-custodio/python/ch-1.py index ff71f11953..57d08d0847 100644 --- a/challenge-101/paulo-custodio/python/ch-1.py +++ b/challenge-101/paulo-custodio/python/ch-1.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Challenge 101 +# +# TASK #1 > Pack a Spiral +# Submitted by: Stuart Little +# # You are given an array @A of items (integers say, but they can be anything). # # Your task is to pack that array into an MxN matrix spirally counterclockwise, diff --git a/challenge-101/paulo-custodio/python/ch-2.py b/challenge-101/paulo-custodio/python/ch-2.py index 1ea5f422f7..0e510d9eca 100644 --- a/challenge-101/paulo-custodio/python/ch-2.py +++ b/challenge-101/paulo-custodio/python/ch-2.py @@ -1,5 +1,7 @@ #! /usr/bin/env python +# Challenge 101 +# # TASK #2 > Origin-containing Triangle # Submitted by: Stuart Little # You are given three points in the plane, as a list of six co-ordinates: |
