Skip to content

Instantly share code, notes, and snippets.

'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

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:
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]
  • 4월 16일 까지 확정된 주제를 카페에 게시해야 합니다.
  • 다른 조와 중복되는 주제는 선택할 수 없습니다.

제안된 토론 주제

  1. 인터넷 익명제
  2. 무상 급식
  3. 원전 문제
  4. 공개 오디션 문제
  5. 투표 강제성
  6. 공창제 (성매매 합헌 여부)
To get around this, the simplest thing to do is to set these variables in the settings file.
tm_isdst
daylight saveing time
inegalitarian
ineluctable
evade
upheaval
meritocracy
_meritocratic_ hope
profess
contingency
confer
bestow on/upon
# 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: