목록전체 글 (55)
5 DERECHA
ip link show (ip s)ip route show (ip r)ip addr show (ip a)vim keychmod 600 keyssh -i key root@10.0.0.1ssh -v -i key root@10.0.0.1/etc/network/interfaces/etc/netplan/01-netcfg.yamlsudo netplan trysudo netplan applysudo susudo rebootsudo shutdown -h now
Softeer 역량 진단 이란? 현대 그룹에서 보는 자체 시험으로, 시험에 PASS하게 될 시에 현대 그룹 코딩테스트 면제라는 특혜를 주는 시험입니다. 1번 문제 : Stack + Deque 기존의 괄호 문제에서 물음표가 추가 되었을때, 물음표(?)를 '('나 ')'로 바꿔서 괄호가 맞는 쌍으로 만들수 있는지 물어보는 문제였습니다. 문제에서는 '('가 들어오는 사람, ')'가 나가는 사람으로, ')'의 수가 (나가는 사람의 수가) 들어온 사람 보다 더 많으면 안 되고, 마지막에는 스택에 아무것도 안 남아 있어야합니다. N이 5000까지 가능하였기에, dfs같은 재귀함수로 모든 물음표가 나오는 경우를 탐색하기에는 시간초과의 우려가 있었습니다. 그리디로 처음에 접근해서 문제를 풀었으나, 어떤 경우에 괄호를 ..
[문제 유형] (주) Simulation => (DFS) + Simulation(job scheduler 관리(Queue or Array) + 2차원 map + (Sort) (부) 2구조체 배열 + 2 scheduling [문제 접근] Simulation 문제고 그 중에서도 job scheduler를 관리하는 문제이며 역시나 2차원 map에서 움직이는 유형입니다. 그리고 job scheduler 과정에서 recursive 함수가 포함되는 것까지 기존에 출제되던 유형입니다. 이번에는 Queue가 아닌 Array로 관리할 수 있게 나왔습니다. 다음에는 Queue를 이용해서 문제가 나올수 있겠네요. 아래는 해당 문제를 Note에 적어가며 정리하면서 접근해가는 과정의 일입니다. 1) 문제를 읽어보면서 제일 처음..
1. What is the network? A network is a structure that allows computers and other devices to exchange data. It enables communication and resource sharing. 네트워크는 컴퓨터 및 기타 장치들 간에 데이터를 주고받을 수 있는 구조를 의미합니다. 이는 데이터 통신과 리소스 공유를 가능하게합니다. Network is like a system of roads that connect different places. In a computer network, these "roads" are cables or wireless connections, and the "places" are computers..
기출 문제 인터넷에 있는거 정리 1. OS related questions, Questions related to my current job, memory management, a simple coding question with two 193.pointed approach to solve. 2. Knowledge of standard data structures like Arrays, Linked Lists, Trees, Tries, Hash tables etc. 3. implementing and utilizing linked lists for dynamic data structures 4. basic questions on layer 2 and layer 3 protocols and as well ..
1. 언어적 준비 1) post-order 필요한거 설명할때 We can see that we need to process the children before we process a node. This indicates that we need to perform a post-order traversal. To implement post-order traversal, we implement a recursive function. This function takes the root of the subtree as the input. 2) max_sum = max(max_sum, a) 이런 상황일때 compare max_sum with ""the sum of the following"(좋은 표현)", and ..
File Descriptor A file descriptor is an integer value used to identify and manage files or I/O devices in a computer system. File descriptors are employed when programs open, read, or write to files, and each descriptor uniquely represents a specific file or device. Typically, specific descriptor values like 0, 1, and 2 correspond to standard input, standard output, and standard error streams, w..
https://www.geeksforgeeks.org/oops-interview-questions/ 1. What is Operating System ? An operating system is an interface that manages hardware resources and serves as a bridge between hardware and applications or software(e.g. service daemon) that run on it by using kernel. It coordinates various hardware resources, such as the CPU, GPU, memory, storage devices, and input/output peripherals(key..