Skip to content

Instantly share code, notes, and snippets.

View chaewonkong's full-sized avatar

chaewonkong chaewonkong

View GitHub Profile
// https://www.acmicpc.net/problem/1922
// MST와 크루스칼 알고리즘을 기반으로 한 문제 풀이
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.StringTokenizer;
public class Main {
import java.util.Scanner;
public class Fibonacci5 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println(fib(n));
}

Part 1. 기획

  1. 문제 인식
  2. 비전 - 우리가 제공하려는 가치
  3. 3C 분석
    • 경쟁 서비스 분석 - depth, 우월한 정확성, 혼합 경로 막차, 특급/급행, 표로 요약
    • 고객 분석 - 20대 초중반의 대학생. 설문조사 / 마케팅 결과 간단 요약
    • 자사 분석 - 팀원의 기술적 역량, 우리의 서비스 소개, 데모
      • 동훈: 알고리즘에 정통한 그로스 해커
  • 성찬:
maxDist 0.2058805547746917
maxAngle 55.85332153587218
sumDist 0.6053398622582054
dist_match 0.7941194452253083
angle_match 0.8448518846225772
match 0.8194856649239428
maxDist 0.5666481067592722
maxAngle 90.70456463649398
sumDist 1.4713652396366204
dist_match 0.43335189324072776
@chaewonkong
chaewonkong / kindergarten.md
Last active September 21, 2018 07:05
kindergarten.md

유치원 앱 관련 인터뷰

누구를 대상으로 할 것인가?

  • 학부모를 대상으로 하게 되어도 쓰는 주체는 어린이집이다. 학부모가 원하는 알림장과 어린이집 운영자가 원하는 알림장은 서로 좀 다르다. (니즈가 다름) 어린이집 측에서는 모든 것을 다 오픈할 수 만은 없다.
  • 불특정 다수의 학부모를 받게 됨. 교육철학이 다른 학부모들도 받게 된다.
  • 어린이집이 주체가 되어 어린이집이 편하게 생각하는 앱이 필요하다.
  • 필요하긴 진짜 필요하다. 유망하다고도 생각한다.

앱 필요성

@chaewonkong
chaewonkong / weather_mail.py
Created February 18, 2018 09:22
Get outside temparature of seoul and send e-mail to recipients in mailing.csv to notify weather
'''Christmas E-mail Push Program
Push notice via e-mail when it comes to Christmas.'''
import csv
from bs4 import BeautifulSoup
import requests
import smtplib
@chaewonkong
chaewonkong / hogangnono.py
Created February 9, 2018 14:20
호갱노노 Scraper
'''"호갱노노" News Scraper
Scrape (title, date, url) from the google news search results for "호갱노노" within 1 week,
and create "hogangnono.csv" to contain the scraped data.
'''
import requests
import csv
from bs4 import BeautifulSoup
@chaewonkong
chaewonkong / abbreviation.py
Created December 27, 2017 06:58
Abbreviate the input words by taking each first letter from each word, and return in uppercase
'''Abbreviation Generator
Take each first letter from at least two words of input and generate abbreviation.'''
def abbreviate(S):
'''
Abbreviate string S by taking first letters from each word in string S.
'''
abbreviation = S[0]
n = 0
@chaewonkong
chaewonkong / digits_generator.py
Last active December 14, 2017 14:09
Make the input number to be requested digits, by attaching additional '0's in front of the input number.
'''digits Generator
Change any kinds of input number into required digits of output.
Add '0' in front of the input number if needed, in proper times.
'''
def is_number(n):
'''Raise Error when input is not given as an integer.'''
try:
int(n)
@chaewonkong
chaewonkong / factorial_calculator.py
Last active December 12, 2017 09:23
Factorial Calculator
'''Factorial Calculator
About input of an integer
print the outcome of factorial calculation.
'''
def factorial(n):
'''
Calculate outcome of n(n-1)(n-2)...1 about given number n.
if the input = 0, return 1 automatically.