-
A bit like in video games or work platforms, you can earn badges when you carry out actions with daring and success. Not only do these successes appear in the profiles on the one hand, but there are a…
-
jhoffner I really don't want to publicly shame CW cheaters here but recently there seems to be an increase in the number of cheaters who aren't getting banned quick enough. Some cheaters have already…
-
- Name: Odin
- Website: [odin-lang.org](https://odin-lang.org/)
- Language Version: dev-2021-12
Odin is a Data Oriented, general purpose open source System Language. Meant to be a “C Alternative”…
-
This has occurred to [this translation](https://www.codewars.com/kumite/59e84829c596ebcc7c00003e?sel=59e84829c596ebcc7c00003e) of [this kata](https://www.codewars.com/kata/square-matrix-multiplication…
-
Last night I completed [this kata](https://www.codewars.com/kata/how-many-numbers-iii).
* I am able to see the kata solutions
* I am able to see my "past solution" when I "train again"
* I see my sol…
-
## Feature
Add libraries for [data driven testing](https://en.wikipedia.org/wiki/Data-driven_testing) e. g. [ddt](http://ddt.readthedocs.io/en/latest/index.html) in Python.
## Rationale
1. More d…
-
### **本周工作**
1.根据林致宇同学的课程报告《眼底图像中视网膜血管的分割》初步写了论文的引言,方法部分和实验的部分内容。
2.根据pytorch官网的教程和Unet的pytorch代码实现继续学习pytorch的使用。
3.在https://www.machinelearningplus.com/python/101-numpy-exercises-python/ 学习numpy库…
-
-
Lista dos melhores cursos gratuitos online de Python
### MOOCs
* PyCursos [Python para Zumbis](http://pycursos.com/python-para-zumbis/)
*
* EDX - MITx [Introduction to Computer Science Us…
-
コードゴルフ
## python
```
import re
def disemvowel(string):
return re.sub("[aiueoAIUEO]","",str(string))
```