Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬
- WAS WebServer 차이
- 파이썬 주식
- BigDecimal
- 와스 웹서버의 차이
- 트레이딩 봇 만들기
- java
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- 프로그래머스 SQL
- pybithumb
- JSON 형식
- JavaScript Obejct Notation
- 변동성 돌파전략
- 단순 반복 자동화
- Web Service Architecture
- WAS란
- 리눅스
- 빗썸 API 사용
- Python
- spring
- Web Server란
- beautifulsoup
- string format
- 프로그래머스
- 프로그래머스 소수
- 오라클
- 리눅스 rwx
- 파이썬 가상환경
- 리눅스 777
- JSON특징
Archives
- Today
- Total
목록해커랭크 (1)
IT 개발자_S

#!/bin/python3 import math import os import random import re import sys # Complete the birthdayCakeCandles function below. def birthdayCakeCandles(ar): ar.sort() ar.reverse() check = True result =0 i =0 while(check) : result +=1 if(ar[i] ==ar[i+1]): i +=1 else : return result check =False break if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') ar_count = int(input()) ar = li..
IT/알고리즘_Python
2020. 3. 10. 23:36