Code from Chapter 2 of “Machine Learning and Deep Learning: Simulation with Python” has been rewritten for clarity.
Continue reading Machine Learning and Deep Learning: Simulation with Python – qlearning.pyCategory Archives: [:ja]プログラミング[:en]Programming[:]
(日本語) JUnit 5 ユーザーズガイド を読む 1
Kotlin: Why Break or Continue can’t be used in forEach or repeat, while for and while can use them
In Kotlin while and for block, break and continue can be used, but they can’t be used in forEach or repeat block.
Kotlin: Number Type and Range
I summarized Kotlin basic number types and their range. In Kotlin, we can use Byte, Short, Int, Long, and UByte, UShort, UInt, ULong.
Kotlin: Code to Copy Something to Clipboard
I wrote the code to copy something to the clipboard in Kotlin.
Continue reading Kotlin: Code to Copy Something to Clipboard