Meydan okuma
ASCII sanat sayılarını tanır. İşleri ilginç hale getirmek için görüntüdeki üç rastgele nokta ters çevrilebilir. Örneğin:
*****
* **
**
**
**
**
Giriş
Aşağıdaki Python betiği tarafından oluşturulan 7x7 ASCII sanat numarası.
Çıktı
Bir rakam.
Test komut dosyası
İşte test senaryolarını oluşturmak için bir Python betiği (2.6+):
import random
digits = '''\
***
** **
** **
** **
** **
** **
***
*
***
*
*
*
*
*****
***
* **
*
**
**
**
******
***
* **
*
***
*
* **
***
**
***
* **
* **
******
**
**
*****
**
****
*
*
* *
***
****
**
*****
* *
** **
** *
****
*****
**
**
**
**
**
**
****
** **
** **
****
** **
** **
****
***
** **
** **
** *
****
**
**** '''.split('\n\n')
def speckle(image, num_speckles):
grid = [list(row) for row in image.split('\n')]
for i in range(num_speckles):
row = random.choice(grid)
row[random.randint(0, 6)] = random.choice([' ', '*'])
return '\n'.join([''.join(row) for row in grid])
digit = random.choice(digits)
print(speckle(digit, 3))