일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- codesignal
- 파이썬머신러닝완벽가이드
- adjacentElementsProduct
- Counting cells in a blob
- Numpy
- Daily Commit
- recursion
- 파이썬 포렌식
- 백준
- C++
- almostIncreasingSequence
- shapeArea
- matrixElementsSum
- Sequential Search
- Python
- 피보나치 수
- flask
- til
- centuryFromYear
- 수 정렬하기
- baekjun
- All Longest Strings
- cpp
- 2015 봄학기 알고리즘
- markdown
- collections.deque
- data_structure
- 2750
- codesingal
- 10953
- Today
- Total
Introfor
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051__author__ = "introfor"; /*history: 2016/11/30 Starting one-dimension theater reservation system. Finished.*/ #include #define SIZE 10 int main() { char c = 0; int place = 0; int theater[SIZE] = { 0 }; while (1) { printf("극장 좌석 예약 하시겠습니까?(y/n)"); scanf_s("%c", &c); if (c == 'y') { printf("예매가능좌석\n"); pri..
123456789101112#-*- coding: utf-8 -*- __author__="Introfor" import urllib, re num =12345 while(True): response = urllib.urlopen("http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=%s" % num).read() num = "".join(re.findall(r"\d", response)) print responseColored by Color Scriptercs
12345678910111213# -*- coding: utf-8 -*- __author__='Introfor' import re, urllib2 url = "http://www.pythonchallenge.com/pc/def/equality.html"response = urllib2.urlopen(url).read()strings = response[response.rindex('')] result = "".join(re.findall(r"[^A-Z][A-Z]{3}([a-z])[A-Z]{3}[^A-Z]",strings)) print resultColored by Color Scriptercs