This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import math | |
SIZE = 100000 * 2 + 1 | |
primes = [True] * SIZE | |
primes[0] = False | |
primes[1] = False | |
def generate_primes(): | |
N = int(math.sqrt(SIZE)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import math | |
SIZE = 100000 * 2 + 1 | |
primes = [False] * SIZE | |
primes[2] = True | |
def is_prime(a): | |
if (primes[a]): | |
return True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import math | |
def is_prime(a): | |
if a == 1: | |
return False | |
if a == 2: | |
return True | |
if a % 2 == 0: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import math | |
def is_prime(a): | |
if a == 1: | |
return False | |
if a == 2: | |
return True | |
if a % 2 == 0: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import math | |
def is_prime(a): | |
if a == 1: | |
return False | |
if a == 2: | |
return True | |
if a % 2 == 0: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
def is_prime(a): | |
if a == 1: | |
return False | |
if a == 2: | |
return True | |
if a % 2 == 0: | |
return False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Proqram təminatı ustalığı üzrə toplanışlar üçün manifesto | |
Biz inanırıq ki, proqram təminatı ustalığı üzrə toplanışlar, | |
onun iştirakçıları üçün dəyərlər yaradır, o halda kı aşağıdakılar | |
nəzər alınsın: | |
Ümumi çıxışlardansa, | |
Kodlar üzərində praktiki və konkret müzakirələr. | |
- Çıxış edənlər kod yazmalı və ya göstərməli. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Səviyyəni yüksəldərək | |
Mükəmməllik arxasınca gedən proqram təminatı ustaları olaraq, biz peşəkar proqramlaşdırma səviyyəsini, özümüz yerinə yetirərək və başqalarının bunu öyrənməsinə yardım edərək, yüksəldirik. | |
Bu əməyin nəticəsində biz: | |
Yalnız çalışan proqram təminatına deyil, həm də ustalıqla yaradılmış proqram təminatına da. | |
Yalnız dəyişikliklərə hazır olmağa deyil, həm də daim dəyər qatmağa da. | |
Yalnız fərdlərə və münasibətlərə deyil, həm də peşəkarlar icmasına da. | |
Yalnız müştəri ilə əməkdaşlığa deyil, həm də məhsuldar həmkarlığa da | |
dəyər vermək qənaətinə gəldik. Sol tərəfdəki maddələrə əmək etməklə bərabər, sağ tərəfdəki maddələrin də qaçılmaz olduğunu hesab etməkdəyik. | |
(c) 2009, aşağıda imza atmış insanlar. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder