Skip to content

Instantly share code, notes, and snippets.

# eratosthenes sieve
def sieve(n):
if n <= 1:
return []
daisy = first_chain
primes = [2]
for i in range(3, n+1, 2):
p = daisy(i)
if p:
inegalitarian
ineluctable
evade
upheaval
meritocracy
_meritocratic_ hope
profess
contingency
confer
bestow on/upon
To get around this, the simplest thing to do is to set these variables in the settings file.
tm_isdst
daylight saveing time
  • 4월 16일 까지 확정된 주제를 카페에 게시해야 합니다.
  • 다른 조와 중복되는 주제는 선택할 수 없습니다.

제안된 토론 주제

  1. 인터넷 익명제
  2. 무상 급식
  3. 원전 문제
  4. 공개 오디션 문제
  5. 투표 강제성
  6. 공창제 (성매매 합헌 여부)
def poprime(n):
if n <= 1:
return []
if n == 2:
return [2]
p = list(range(3, n+1, 2))
j = 1
while j < len(p):
q = r = p[0]
from math import sqrt, trunc
# sqrtz: Z+ -> Z+ AND sqrtz(n) <= sqrt(n) 을 만족하는 함수를 구현한다.
def sqrtz(n):
return trunc(sqrt(n))
# 이전에 이미 소인수가 발견되었음을 활용한다.
def assemble_factor(n):
factors = {}
while not n & 1:

'legislature
the ​group of ​people in a ​country or ​part of a ​country who have the ​power to make and ​change ​laws

in'variably
always

sleep deprivation
수면 부족

be subject to something

@ariesobj
ariesobj / palindrome.py
Created April 19, 2016 11:45
four method which checks if the string is a palindrome.
# 구현하기 귀찮음
from math import floor, ceil
# 정수 집합에서 정의된 자기 자신을 제외한 최소 하계
U = lambda x: floor(x + 1)
# 정수 집합에서 정의된 자기 자신을 제외한 최소 상계
L = lambda x: ceil(x - 1)
def impl1():

각 조의 주제와 더불어 나의 의견도 짧막하게 적어놓았음.

1 조
청소년 범죄 처벌 수위를 높여야 하는가

그렇다. 청소년이 판단 능력이 완전하지 못한 주체로 여기는 것은 현 시대와 괴리가 있는 생각이다. 따라서 판단 능력 부족으로 청소년 범죄에 약한 형벌을 가하는 것은 올바르지 않으며 청소년에게도 보다 엄격한 범의 잣대를 대어야 한다.

2 조