We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update penambahan implementasi struktur data pada python
note: issue ini akan dimulai setelah issue yang lama sudah diselesaikan
folder : struktur_data
struktur_data
binary tree
hash
heap
linked list
queue
stack
trie
OS : Linux / Windows / MacOS Python: diatas versi 2
Linux / Windows / MacOS
diatas versi 2
def hitung_diameter_lingkaran(radius: float) -> float: """ menghitung diameter dari sebuah lingkaran rumus: diameter: 2 * radius >>> hitung_diameter_lingkaran(12) 24.0 """ return float(2 * radius)
kemudian disarankan dengant testing lokal dengan menginstall flake8 dan pytest pytest
pytest . --doctest-modules --ignore=Basic/
atau bisa juga dengan
pytest namafile.py --doctest-modules --ignore=Basic/
flake8
flake8 . --ignore=E203,W503,W504 --max-complexity=25 --max-line-length=88
add: menambahkan algoritma sigmoid
feat: menambahkan algoritma sigmoid
fix: memperbaiki kesalahan pada algoritma sigmoid
The text was updated successfully, but these errors were encountered:
No branches or pull requests
description
update penambahan implementasi struktur data pada python
note:
issue ini akan dimulai setelah issue yang lama sudah diselesaikan
folder :
struktur_data
binary tree
hash
heap
linked list
queue
stack
trie
saya menggunakan
OS :
Linux / Windows / MacOS
Python:
diatas versi 2
tambahan lainnya
kemudian disarankan dengant testing lokal dengan menginstall flake8 dan pytest
pytest
pytest . --doctest-modules --ignore=Basic/
atau bisa juga dengan
flake8
flake8 . --ignore=E203,W503,W504 --max-complexity=25 --max-line-length=88
add: menambahkan algoritma sigmoid
feat: menambahkan algoritma sigmoid
fix: memperbaiki kesalahan pada algoritma sigmoid
The text was updated successfully, but these errors were encountered: