[The model layer] Managers
구글 번역기의 도움을 (많이) 받아 장고 공식 문서를 번역하였습니다.
More …구글 번역기의 도움을 (많이) 받아 장고 공식 문서를 번역하였습니다.
More …Given 2 sorted arrays A and B of size N each. Print sum of middle elements of the array obtained after merging the given arrays.
More …Given an expression string exp, examine whether the pairs and the orders of “{“,”}”,”(“,”)”,”[“,”]” are correct in exp.
For example, the program should print ‘balanced’ for exp = “[()]{}{[()()]()}
and not balanced
for exp = [(])
스택처럼 큐는 특정한 순서로 동적하는 선형 자료구조이다. 순서는 FIFO(First In First Out). 가장 좋은 예는 마트에서 고객들이 줄을 선 순서대로 계산을 하고 나가는 것이다. 스택과 다른 점은 제거될 때이다. 스택에서는 가장 최근에 추가된 아이템이 제거되지만 큐에서는 가장 오래된 아이템이 먼저 제거된다.
More …Stack은 특정한 순서로 수행되는 선형 자료구조이다. 그 순서란 LIFO(Last In First Out) 또는 FILO(First In Last Out)을 말한다. 즉, 스티커 메모지를 겹쳐서 위로 덧붙였을 때 맨 위쪽부터 다시 하나씩 떼어지는 과정을 생각하면 된다.
More …Array
처럼 linked list
는 선형 자료구조를 갖는다. Array
와 다른 점은 linked list
의 원소들은 인접한 공간에 저장되지 않고 pointer를 사용해 각 각의 원소를 연결한다.
2018.06.04
More …Given an array of integers, replace every element with the next greatest element (greatest element on the right side) in the array. Since there is no element next to the last element, replace it with -1.
More …Given an array of distinct elements, rearrange the elements of array in zig-zag fashion in O(n) time. The converted array should be in form a < b > c < d > e < f.The relative order of elements is same in the output i.e you have to iterate on the original array only.
More …Given an array C[] of integers, find out the maximum difference between any two elements such that larger element appears after the smaller number in C[].
Examples: If array is [2, 3, 10, 6, 4, 8, 1] then returned value should be 8 (Diff between 10 and 2). If array is [ 7, 9, 5, 6, 3, 2 ] then returned value should be 2 (Diff between 7 and 9).
You have deposited a specific amount of dollars into your bank account. Each year your balance increases at the same growth rate
. Find out how long it would take for your balance to pass a specific threshold
with the assumption that you don’t make any additional deposits.
Consider integer numbers from 0
to n - 1
written down along the circle in such a way that the distance between any two neighbouring numbers is equal (note that 0
and n - 1
are neighbouring, too).
Given a string, replace each its character by the next one in the English alphabet (z
would be replaced by a
).
Check if all digits of the given integer are even.
More …