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
# hi |
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
class Mother: | |
my_varialbe = 3 | |
def _func(self): | |
print('func νΈμΆ') | |
def func_caller(self): | |
print('μ¬κΈ°μ λ‘κ·Έλ₯Ό μ°λ©΄ λ©λλ€: {}'.format(self.my_variable)) | |
self.func() | |
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 dis | |
def recursive_sum(n): | |
print('recursive νΈμΆ', n) | |
if n == 1: | |
return 1 | |
return n + recursive_sum(n-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
def alter_alpha(to): | |
num = ord(to) | |
return num - 65 if num < 79 else 90 - num + 1 | |
def traverse(done, i): | |
# TODO ; left_cnt λ³΄λ€ right_cnt κ° ν¬λ©΄ right νμμ μ€λ¨ νλ μ΅μ νκ° κ°λ₯ν κΉ? λ΅μ μν₯μ΄ μμκΉ? | |
# κΈ°μ μ¬λ‘ | |
if False not in done: |
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
package buv.co.kr.util.youtube;/* | |
* Copyright (c) 2012 Google Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except | |
* in compliance with the License. You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software distributed under the License | |
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
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
solution = lambda t, l = []: max(l) if not t else solution(t[1:], [max(x,y)+z for x,y,z in zip([0]+l, l+[0], t[0])]) |
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
# μ’ λ§λΆμμ νμλ λ¬Έμ . μΌκ°ν λͺ¨μλ§ λ€λ₯΄λ€. | |
# cache[i][j] λ³΄λ€ f μ€νΈλ§μ μ¬μ©ν 1μ€ dict κ° ν¨μ¬ λΉ λ₯΄λ€. | |
# μ΄κ² λ°λ³΅μΌλ‘ ν μ μλ λ¬Έμ μΈκ°? | |
cache = {} | |
def move(triangle, i, j): | |
''' | |
νμ¬ μμΉμμ λ΄λ €κ°μ λ μ»μ μ μλ μ΅λκ°μ λ°νν©λλ€. |
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
# ν μ€ μ§λ¦¬ μ루μ ν΄μ | |
def solution(t, l = []): | |
if not t: # νμΆ μ‘°κ±΄. μΌκ°νμ μ λΆ μλͺ¨νλ€. | |
return max(l) | |
result = [] | |
for x, y, z in zip([0]+l, l+[0], t[0]): # [0] + l = 0 λνκΈ° 리μ€νΈ | |
# zip μ 리μ€νΈλ₯Ό n κ° λ°μμ κ° λ¦¬μ€νΈ λ§λ€ foreach λ₯Ό λμμ€μ | |
# for a, b, c in zip(A, B, C) μ΄λ©΄ a λ Aμ μμ, b λ Bμ μμ, c λ Cμ μμ | |
result.append(max(x, y) + z) # result μ νλμ© λν¨ |
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 sys , os | |
sys.path.append(os.pardir) | |
from dataset.mnist import load_mnist | |
from common.functions import sigmoid, softmax, np | |
def get_data(): | |
(x_train, t_train), (x_test, t_test)=\ | |
load_mnist(normalize=True, flatten=True, one_hot_label=True) | |
return x_train, t_train |
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 python | |
import flask | |
from flask import request, jsonify | |
from os import path, environ | |
from raven.contrib.flask import Sentry | |
import cv2 | |
import numpy as np | |
import requests |
OlderNewer