From 1d1885956558278889cc2f4cd2b29f67fea9a66e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 7 Apr 2020 10:18:35 +0200 Subject: [PATCH 1/2] Create Python/quantum/README.md Started at #1831 --- quantum/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 quantum/README.md diff --git a/quantum/README.md b/quantum/README.md new file mode 100644 index 000000000000..8dfc76826787 --- /dev/null +++ b/quantum/README.md @@ -0,0 +1,8 @@ +# Welcome to Quatum Algorithms + +Started at https://github.com/TheAlgorithms/Python/issues/1831 + +* D-Wave: https://www.dwavesys.com and https://github.com/dwavesystems +* Google: https://research.google/teams/applied-science/quantum +* IBM: https://qiskit.org and https://github.com/Qiskit +* Rigetti: https://rigetti.com and https://github.com/rigetti From 4592a9bdcb40ecd3d3959ca548fc516daffa327e Mon Sep 17 00:00:00 2001 From: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Date: Tue, 7 Apr 2020 08:19:33 +0000 Subject: [PATCH 2/2] 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__":