From 17ddec016edb84d19c8b1e3f843336517486aa81 Mon Sep 17 00:00:00 2001 From: Kmek Date: Tue, 1 Oct 2019 08:57:15 -0400 Subject: [PATCH 1/4] Add python hello.py --- python/hello.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 python/hello.py diff --git a/python/hello.py b/python/hello.py new file mode 100644 index 00000000..7f178e81 --- /dev/null +++ b/python/hello.py @@ -0,0 +1 @@ +print("Hello World!!!") \ No newline at end of file From 63d6aa1c86f718efa4834120dd3f4b7c009d89b9 Mon Sep 17 00:00:00 2001 From: Kmek Date: Tue, 1 Oct 2019 09:07:40 -0400 Subject: [PATCH 2/4] Add PowerShell UniqueArray.ps1 --- powershell/UniqueArray.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 powershell/UniqueArray.ps1 diff --git a/powershell/UniqueArray.ps1 b/powershell/UniqueArray.ps1 new file mode 100644 index 00000000..faa7fdfb --- /dev/null +++ b/powershell/UniqueArray.ps1 @@ -0,0 +1,7 @@ +$array = @(1, 10, 7, 1, 1, 4) + +Write-Host $array + +$array = $array | Select-Object -Unique # The sorting one-liner + +Write-Host $array \ No newline at end of file From 339d9af5db3a3b6fe5a4153b43dab58d44f986e6 Mon Sep 17 00:00:00 2001 From: Kmek Date: Tue, 1 Oct 2019 09:10:48 -0400 Subject: [PATCH 3/4] Remove hello.py for this branch --- python/hello.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 python/hello.py diff --git a/python/hello.py b/python/hello.py deleted file mode 100644 index 7f178e81..00000000 --- a/python/hello.py +++ /dev/null @@ -1 +0,0 @@ -print("Hello World!!!") \ No newline at end of file From 72c2ca696aa8b9ade1d2f44e9bdcab3b48580bcb Mon Sep 17 00:00:00 2001 From: Kazuko Kannagi <43587695+kannagikazuko@users.noreply.github.com> Date: Thu, 17 Oct 2019 14:34:46 -0400 Subject: [PATCH 4/4] Rename powershell/UniqueArray.ps1 to powershell/unique/Kmek_UniqueArray.ps1 --- powershell/{UniqueArray.ps1 => unique/Kmek_UniqueArray.ps1} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename powershell/{UniqueArray.ps1 => unique/Kmek_UniqueArray.ps1} (86%) diff --git a/powershell/UniqueArray.ps1 b/powershell/unique/Kmek_UniqueArray.ps1 similarity index 86% rename from powershell/UniqueArray.ps1 rename to powershell/unique/Kmek_UniqueArray.ps1 index faa7fdfb..4a6217b7 100644 --- a/powershell/UniqueArray.ps1 +++ b/powershell/unique/Kmek_UniqueArray.ps1 @@ -4,4 +4,4 @@ Write-Host $array $array = $array | Select-Object -Unique # The sorting one-liner -Write-Host $array \ No newline at end of file +Write-Host $array