일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- almostIncreasingSequence
- 백준
- Daily Commit
- collections.deque
- Python
- cpp
- til
- 수 정렬하기
- Numpy
- Counting cells in a blob
- 2750
- baekjun
- Sequential Search
- shapeArea
- data_structure
- 파이썬 포렌식
- matrixElementsSum
- centuryFromYear
- flask
- adjacentElementsProduct
- 피보나치 수
- markdown
- recursion
- All Longest Strings
- C++
- 2015 봄학기 알고리즘
- codesingal
- 10953
- 파이썬머신러닝완벽가이드
- codesignal
- Today
- Total
Introfor
12345678910111213141516171819def classification(test): standard, rest = int(7/len(test)), 7%len(test) for i in range(standard): # enumerate 리스트가 있는 경우 순서와 리스트의 값을 전달하는 기능 # for j, name in enumerate(patroller): # # print(j,name) enumerate 값을 보여줌 # print(j, name) for j, name in enumerate(test): print(j,name) if i==1 and j == 2 : l1 = list(enumerate(test)) print(l1[rest-1][rest-1],l1[rest-1][rest])..
요셉의 문제 :A부터 J까지의 10명의 사람이 시계 방향으로 순서대로 원을 지어 앉아 있다고 하자. 이때 A부터 시작하여서 4명 간격으로 사람을 그 원에서 뽑아낸다고 하면 그 순서는 어떻게 될 것인가? 결과 : A, E, I, D, J, G, F, H, C, B 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061#include #include typedef struct _node { int data; struct _node *next;} node; node *head; void insertNodes(int k) { node *t; int i; t = (n..