- 문제 인식
- 비전 - 우리가 제공하려는 가치
- 3C 분석
- 경쟁 서비스 분석 - depth, 우월한 정확성, 혼합 경로 막차, 특급/급행, 표로 요약
- 고객 분석 - 20대 초중반의 대학생. 설문조사 / 마케팅 결과 간단 요약
- 자사 분석 - 팀원의 기술적 역량, 우리의 서비스 소개, 데모
- 동훈: 알고리즘에 정통한 그로스 해커
- 성찬:
| // 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)); | |
| } |
| 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 |
| '''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 | |
| '''"호갱노노" 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 |
| '''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 |
| '''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) |
| '''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. |