From db2ba2b0269eb93ea25b905fe2ad949e61eab5e5 Mon Sep 17 00:00:00 2001 From: ggorlen Date: Wed, 10 Jul 2024 22:08:47 -0700 Subject: [PATCH 1/4] Add solution.js --- solution.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 solution.js diff --git a/solution.js b/solution.js new file mode 100644 index 0000000..4fc05bc --- /dev/null +++ b/solution.js @@ -0,0 +1 @@ +module.exports = {add: (a, b) => a + b}; From b899057f84db5076796a29c5fcf5be9d1c3f4608 Mon Sep 17 00:00:00 2001 From: ggorlen Date: Tue, 16 Jul 2024 19:11:42 -0700 Subject: [PATCH 2/4] Add solution.py --- solution.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 solution.py diff --git a/solution.py b/solution.py new file mode 100644 index 0000000..9bc8bf7 --- /dev/null +++ b/solution.py @@ -0,0 +1 @@ +def add(a, b): return a + b From 2b39d483971b2c04217c5974035302b40dd76d2e Mon Sep 17 00:00:00 2001 From: ggorlen Date: Tue, 16 Jul 2024 21:18:45 -0700 Subject: [PATCH 3/4] Add solution.rb --- solution.rb | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 solution.rb diff --git a/solution.rb b/solution.rb new file mode 100644 index 0000000..ba85b82 --- /dev/null +++ b/solution.rb @@ -0,0 +1,3 @@ +def add(a, b) + a + b +end From 6d63b4c534c09224588b0870555216bfc924964b Mon Sep 17 00:00:00 2001 From: ggorlen Date: Wed, 17 Jul 2024 07:17:32 -0700 Subject: [PATCH 4/4] Add solution.php --- solution.php | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 solution.php diff --git a/solution.php b/solution.php new file mode 100644 index 0000000..b8d8d21 --- /dev/null +++ b/solution.php @@ -0,0 +1,4 @@ +