일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- stateful
- Q objects
- SQL
- Programmers
- Git
- stateless
- postreSQL
- Python
- Gunicorn
- greedy
- codecov
- Query
- AWS
- permutations
- HTTP 완벽 가이드
- pytest
- Unit Testing
- dictionary
- Django
- stack&que
- TDD
- utils
- 백준
- ws
- Bruteforce
- combinations
- algorithm
- Stack
- ORM
- was
- Today
- Total
목록Bruteforce (3)
해피 코딩!
link value = 666 limit = int(input()) index = 0 while True: if '666' in str(value): index +=1 if index == limit: print(value) break value +=1
link def black_jack(value): lst = list(map(int, input().split(' '))) max_data =0 for index in range(len(lst)-2): for indent_1_index in range(index+1, len(lst)-1): for indent_2_index in range(indent_1_index+1, len(lst)): data = lst[index]+ lst[indent_1_index]+ lst[indent_2_index] if (data =max_data): max_data = data return max_data _, value = map(int, input().split(' ')) print(bla..
link length = int(input()) lst = [0]* length stack = [0] * length # 모든 값을 넣은다. for index, value in enumerate(lst): weight, height = map(int, input().split(' ')) lst[index] = weight, height # 비교 for index, value in enumerate(lst): rank = 1 for indent_1, indent_1_value in enumerate(lst): if index == indent_1: continue if (value[0] < indent_1_value[0]) and (value[1]