일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- xss game 풀이
- lord of sql injection
- suninatas 풀이
- github
- htmlspecialchars
- 메소드
- 백준 알고리즘
- property
- window
- Pwndbg
- blind sql injection
- sql injection
- document
- object
- 함수
- python
- IF문
- 포인터
- 배열
- 사칙연산
- 파이썬
- burp suite
- 조건문
- 객체
- jQuery
- xss game
- 김성엽 대표님
- element 조회
- 자바스크립트
- 백준 파이썬
- Today
- Total
목록분류 전체보기 (389)
power-girl0-0
구글 코랩이란? 클라우드 기반의 무료 Jspyter 노트북 개발 환경이다. 2017년에 무료로 공개하였으며, 브라우저에서 python코드를 실행하거나 텍스트를 작성할 수 있고 그래프도 그리는 것이 가능한 기능이다. 내부적으로 코랩 + 구글 드라이브 + 도커 + 리눅스 + 구글 클라우드 의 기술 스택으로 이루어진 것이다. 자신의 컴퓨터에 GPU가 없거나 저사양이라면 사용하는 것을 추천한다. 특징 별도의 파이썬 설치가 필요 없다. 데이터에 분석 사용되는 Tensor Flow, Keras, mataplotlib, scikit-learn, pandas와 같은 패키지가 기본적으로 설치되어있다. GPU를 무료로 사용이 가능하다. Jupyter 노트북과 비슷하지만 더 좋은 기능을 제공한다. 깃과 연동이 가능하여 사람..
def solve(a): sum = 0 for i in a : sum += i return sum
num = int(input()) for i in range(num): ox = list(str(input())) score = 0 cnt = 1 for j in ox: if(j == 'O'): score += cnt cnt += 1 else: cnt = 1 print(score)
import sys total = 0 num = int(input()) score = list(map(int, sys.stdin.readline().split())) max = max(score) for i in range(len(score)): result=score[i]/max*100 total += result print("%.2f"%(total/num))
arr = [] for i in range(10): num = int(input()) arr.append(num % 42) arr=set(arr) print(len(arr))
a= int(input()) b= int(input()) c= int(input()) num = str(a*b*c) for i in range(10): print(num.count(str(i)))
max = 0 cnt = 0 for i in range(9): cnt +=1 num = int(input()) if(max < num): max = num location = cnt print(max, location)