mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
Create Python/quantum/README.md (#1834)
* 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>
This commit is contained in:
parent
f35484baf6
commit
3d129a4964
8
quantum/README.md
Normal file
8
quantum/README.md
Normal file
|
@ -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
|
|
@ -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__":
|
||||
|
|
Loading…
Reference in New Issue
Block a user