This file contains hidden or 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 unittest | |
from brackets import well_matched | |
class TestBrackets(unittest.TestCase): | |
def testBrackets(self): | |
s = '''()() | |
({[}]) | |
({}[(){}]) | |
) |
- MATLAB - 엔하위키 미러: 개념 잡기에 아주 적절하다. 어떻게 만들어졌는지 배경지식을 알고 들어가면 MATLAB을 이해하기 훨씬 쉽다.
- MATLAB 기초 사용법: 깔끔하게 pdf로 정리되어 있다
- 트리즈란 ‘창의적 문제 해결’을 뜻하는 러시아어의 약자로 1956년 러시아 학자 겐리히 알츠슐러가 개발했다. 그는 러시아 특허 200만건을 분석한 뒤 파급력 있는 기술들은 단지 수십가지의 패턴으로 정형화돼 있다는 결론을 내렸다. 그 중에서 가장 많이 활용된 아이디어 패턴 40개를 뽑아내 트리즈 이론을 정립했다. 트리즈는 요즘 생산 현장에서 적용되는 데서 벗어나 전략 경영 활동으로 적용 범위가 넓어지는 추세다. 전사품질관리(TQM), 6시그마 등 기존 혁신기법이 생산현장의 품질 개선과 원가 절감에 초점을 맞추고 있는 반면 트리즈는 제품 구성이나 생산라인, 작업 시스템 등을 통째로 바꾸는 경영혁신 기법이다.
- 길 찾는 나비 보고 車내비 개발…"다르게 보면 혁신이 나온다": 몇 가지 예시 보여주고 40가지 원칙만 보여줌
- SJ's House :: [혁신] 트리츠(TRIZ), 40가지의 창의적 문제해결방법: 몇 가지 메타 정보 모음
This file contains hidden or 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
# Kaggle.com | |
# Competition | |
# < Bike Sharing Demand > | |
# 세미나 시간 2시간 | |
# 일자 : 1월 17일 토요일 갱남. | |
# 문제푸는 시간. 캐글 소개, 문제 설명, 데이터 주고, 도전 | |
# 중간중간 미리 준비한 코드 보여주며 잡아주기. 전체 프로세스 경험 | |
# 1. 상황 파악하기(데이터셋 불러오기) |
This file contains hidden or 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
Year | Month | Day | 월 | 화 | 수 | 목 | 금 | 토 | 일 | |
---|---|---|---|---|---|---|---|---|---|---|
2011 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | |
2011 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | |
2011 | 1 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | |
2011 | 1 | 4 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | |
2011 | 1 | 5 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | |
2011 | 1 | 6 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | |
2011 | 1 | 7 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | |
2011 | 1 | 8 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | |
2011 | 1 | 9 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
This file contains hidden or 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 random | |
def sequentialSearch(alist, item): | |
pos = 0 | |
found = False | |
count = len(alist) | |
while pos < count and not found: | |
if alist[pos] == item: | |
found = True | |
else: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
#!/usr/bin/env python2 | |
# coding: utf-8 | |
from __future__ import print_function | |
from tempfile import NamedTemporaryFile | |
import os | |
import sys | |
from shutil import copyfile | |
from wand.image import Image | |
DIMENSIONS = { |
This file contains hidden or 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
#!/usr/bin/env python2 | |
# coding: utf-8 | |
from __future__ import print_function | |
from tempfile import NamedTemporaryFile | |
import os | |
import sys | |
from shutil import copyfile | |
from wand.image import Image | |
DIMENSIONS = { |