일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Counting cells in a blob
- data_structure
- shapeArea
- Python
- centuryFromYear
- codesignal
- 10953
- C++
- Sequential Search
- 2750
- 백준
- flask
- 피보나치 수
- adjacentElementsProduct
- All Longest Strings
- 파이썬 포렌식
- Daily Commit
- 수 정렬하기
- codesingal
- til
- cpp
- almostIncreasingSequence
- matrixElementsSum
- Numpy
- baekjun
- 2015 봄학기 알고리즘
- 파이썬머신러닝완벽가이드
- recursion
- markdown
- collections.deque
- Today
- Total
Introfor
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374__author__="Introfor" """history: 2016/12/27 : Canvas flower START""" from Tkinter import * root = Tk()root.title("Canvas_Flower") xy_size =300 canvas = Canvas(root, bg="white", width = xy_size, height =xy_size) def corner(): n=0 for i in range(10): #1 coord ..
1234567891011121314151617181920212223242526272829303132333435__author__="Introfor" # -*-coding: utf-8 -*-# server.py import socketimport thread HOST = 'localhost'PORT = 50000 s = socket.socket()s.bind((HOST, PORT))s.listen(1) conn, addr = s.accept()print 'Connected by', addr data = '' def msg(): while 1: data = conn.recv(1024) if data: print data.lower() thread.start_new_thread(msg, ()) while 1:..
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253__author__ = "introfor"; /*history: 2016/11/30 Starting two-dimensions theater reservation system. Finished.*/ #include #define SIZE 10 int main() { char c = 0; int weight = 0, height = 0; int theater[SIZE][SIZE] = { 0 }; while (1) { printf("극장 좌석 예약 하시겠습니까?(y/n)"); scanf_s("%c", &c); if (c == 'y') {..