From 238ec563dcbc3c54cc7b01c3a831db46b58dac53 Mon Sep 17 00:00:00 2001 From: Soumya Pandey <43310171+100mya@users.noreply.github.com> Date: Sat, 9 Oct 2021 23:42:56 +0530 Subject: [PATCH 1/2] Create binarySearch.js --- .../binary_search/javascript/binarySearch.js | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 searching/binary_search/javascript/binarySearch.js diff --git a/searching/binary_search/javascript/binarySearch.js b/searching/binary_search/javascript/binarySearch.js new file mode 100644 index 000000000..ebe32011f --- /dev/null +++ b/searching/binary_search/javascript/binarySearch.js @@ -0,0 +1,37 @@ + From fa7ac7c7bde799d72b9280a90e26389980e1b255 Mon Sep 17 00:00:00 2001 From: Soumya Pandey <43310171+100mya@users.noreply.github.com> Date: Sun, 10 Oct 2021 00:17:57 +0530 Subject: [PATCH 2/2] Create hello_world.au3 --- hello_world/Autoit/hello_world.au3 | 1 + 1 file changed, 1 insertion(+) create mode 100644 hello_world/Autoit/hello_world.au3 diff --git a/hello_world/Autoit/hello_world.au3 b/hello_world/Autoit/hello_world.au3 new file mode 100644 index 000000000..b32c97516 --- /dev/null +++ b/hello_world/Autoit/hello_world.au3 @@ -0,0 +1 @@ +MsgBox(0, "Say Hi", "Hello World")