From 20bba60cc4443db4c7f800f5f60419834e818ea9 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 6 Apr 2020 13:32:56 +0200 Subject: [PATCH 1/4] Update FUNDING.yml --- .github/FUNDING.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 514c9327e231..209536812f75 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,7 +1,7 @@ # These are supported funding model platforms -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username +github: [cclauss] +patreon: cclauss open_collective: # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel From 268adf431edb31ad9a57335269e28ed5130a4770 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Mon, 6 Apr 2020 11:33:51 +0000 Subject: [PATCH 2/4] fixup! Format Python code with psf/black push --- strings/reverse_words.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/reverse_words.py b/strings/reverse_words.py index 547dda93d8d1..6b5cc6b04039 100644 --- a/strings/reverse_words.py +++ b/strings/reverse_words.py @@ -14,7 +14,7 @@ def reverse_words(input_str: str) -> str: input_str = input_str.split(" ") new_str = list() - return ' '.join(reversed(input_str)) + return " ".join(reversed(input_str)) if __name__ == "__main__": From 632433f257833719b6c984ede7ed7a9bbd68bfb3 Mon Sep 17 00:00:00 2001 From: Anup Kumar Panwar <1anuppanwar@gmail.com> Date: Fri, 10 Apr 2020 14:54:55 +0530 Subject: [PATCH 3/4] Update FUNDING.yml --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 209536812f75..9a63272be441 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,6 +1,6 @@ # These are supported funding model platforms -github: [cclauss] +github: [cclauss, anupkumarpanwar] patreon: cclauss open_collective: # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username From 079df67209167a9d25cb2cd0ffba344f3b200f18 Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Fri, 10 Apr 2020 09:25:44 +0000 Subject: [PATCH 4/4] updating DIRECTORY.md --- DIRECTORY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/DIRECTORY.md b/DIRECTORY.md index 121b4df17c85..70778ad2dca0 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -270,6 +270,7 @@ * [Abs](https://github.com/TheAlgorithms/Python/blob/master/maths/abs.py) * [Abs Max](https://github.com/TheAlgorithms/Python/blob/master/maths/abs_max.py) * [Abs Min](https://github.com/TheAlgorithms/Python/blob/master/maths/abs_min.py) + * [Allocation Number](https://github.com/TheAlgorithms/Python/blob/master/maths/allocation_number.py) * [Area Under Curve](https://github.com/TheAlgorithms/Python/blob/master/maths/area_under_curve.py) * [Armstrong Numbers](https://github.com/TheAlgorithms/Python/blob/master/maths/armstrong_numbers.py) * [Average Mean](https://github.com/TheAlgorithms/Python/blob/master/maths/average_mean.py)