Skip to content

Commit

Permalink
Create Python/quantum/README.md (#1834)
Browse files Browse the repository at this point in the history
* Create Python/quantum/README.md

Started at #1831

* fixup! Format Python code with psf/black push

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
  • Loading branch information
cclauss and github-actions committed Apr 7, 2020
1 parent f35484b commit 3d129a4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion strings/reverse_words.py
Expand Up @@ -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__":
Expand Down

0 comments on commit 3d129a4

Please sign in to comment.