[EBSe 톡톡] 379. ~을 권합니다. > 자유게시판 1

본문 바로가기
사이트 내 전체검색

자유게시판 1

[EBSe 톡톡] 379. ~을 권합니다.

페이지 정보

작성자 최고관리자 댓글 0건 조회 6회 작성일 24-07-01 05:50

본문


[EBSe 톡톡] 379. ~을 권합니다.

tlswoguq contents are below.

References: 05-tlswoguq contents: Go Click
Other Blog: Blog ArtRobot (Title: [EBSe 톡톡] 379. ~을 권합니다.) More ...
Publish Date: (2024-06-29|10:57 pm), Modified Date: (2024-07-01|2:50 pm)


--- Blog Post Contents
스플래툰3 이벤트매치 참가 후기! [용산 아이파크몰]
스플래툰3 이벤트매치 참가 후기! [용산 아이파크몰] 이번 주말에 한국 닌텐도에서 주최하는 스플래툰3 이벤트 매치에 참여하고 왔다! https://game.donga.com/106636/ 운 좋게도 32팀에 선발되어 친구들과 실제 경기에 참가할 수 있었다. 여러 사정이 있어 제대로 준비하지는 못했지만, 두근거리는 마음으로 경기장으로 향했다~ 아이파크몰 6층에서 닌텐도 스토어 옆에 있는 홀로 들어갈 수 있다. 뭔가 메이저한 게임이 아니라서 사람이 없을줄 알았는데 왠걸! 생각한 것 이상, 그 이상으로 참가인원이 정말 많았다! 이벤트 매치 경기인원은 이렇게 조 추첨을 하고, 카메라 앞에서 응원 문구를 외치며 입장한다. 참가 기념품도 줬는데 스플래툰....... (Publish Date: 2023-03-18)

패널 가입 추천 이벤트
(Publish Date: 2023-02-18)

LeetCode 448. Find All Numbers Disappeared in an Array
1. Question Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] inclusive that do not appear in this array. Could you do it without extra space and in O(n) runtime? You may assume the returned list does not count as extra space. 2. Solving The array value corresponding to index i should be i+1. Therefore, the algorithm must be completed through index j to ensure that the array values exist correctly for each index. time complexity:O(1) 3. Code Success: 68ms, 33.7MB (Publish Date: 2021-01-24)

LeetCode 283. Move Zeroes
1. Question Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements. 2. Solving It can be improved such as below codes 3. Code 1) original code: 8ms, 9.1MB 2) imporved code: 0ms, 9MB (Publish Date: 2021-01-21)

LeetCode 169. Majority Element
1. Question Given an array nums of size n, return the majority element. The majority element is the element that appears more than ⌊n / 2⌋ times. You may assume that the majority element always exists in the array. 2. Solving It can be solved with sorting. And then, we should count number to find answer. 3. Code (Publish Date: 2021-01-19)

LeetCode 136. Single Number
1. Question Given a non-empty array of integers nums, every element appears twice except for one. Find that single one. Follow up: Could you implement a solution with a linear runtime complexity and without using extra memory? 2. Solving It can be solved with sorting. At first, a program will check size of nums, and handle a exception about size is 1. Second, it will sort nums and handle range of numbers exception. Finally, it will return answer. 3. Code (Publish Date: 2021-01-13)

[Linux] NFS mount Permission denied 해결 방법
1. vi /etc/exports 마운트할 디렉토리 경로, 설정이 올바르게 되어있는지 확인 ex) /home/nfs *(rw, root_squash) (root_squash: 클라이언트도 서버의 마운트 디렉토리 내에서 root 권한 가짐) 2. /etc/hosts.allow, /etc/hosts.deny 네트워크 접근 퍼미션 확인 ex) ALL:ALL 3. iptables -F 방화벽 끄기 (Publish Date: 2021-01-13)

Leet 226. Invert Binary Tree
1. Question Invert a binary tree. 2. Solving We have to swap two nodes in both extremes. So, It can solved with dfs algorithm. To know how to solve this problem, look below code. 3. Code (Publish Date: 2021-01-11)

Leet 104. Maximum Depth of Binary Tree
1. Question Given the root of a binary tree, return its maximum depth. A binary tree's maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. https://leetcode.com/problems/maximum-depth-of-binary-tree/ 2. Solving It can be solved with DFS searching algorithm. I should do programming to execept error case, for example, root is null pointer, etc. To know how to solve this probem, look below code. 3. Code (Publish Date: 2021-01-10)

[Linux] 이더넷 인터페이스를 가상으로 만들기
사실 아래 방식으로 가상 인터페이스 추가는 쉽게 가능합니다. 데비안 리눅스 시스템에서 eth0 인터페이스를 가상으로 만들고 싶다면 1. uml-utilites 설치 2. eth0 인터페이스 생성 https://qastack.kr/unix/86720/can-i-create-a-virtual-ethernet-interface-named-eth0 (Publish Date: 2020-12-28)

[Linux][pip] CERTIFICATE_VERIFY_FAILED certificate verify failed 오류 해결
pip install을 하려는데 아래와 같은 로그가 남으면서 실패했다.. 이럴땐 --trusted-host pypi.python.org --trusted-host files.pythonhosted.org --trusted-host pypi.org 옵션을 붙혀서 다시 명령을 내려보자! - 참고한 문서 https://github.com/pypa/pip/issues/5288 (Publish Date: 2020-12-18)

[Docker] docker-compose up 중에 Attaching 완료가 안되는 문제
대신 를 사용하면 해결됨 참고 https://stackoverflow.com/questions/50121943/docker-compose-hangs-on-attaching-to/51554870 (Publish Date: 2020-10-30)

[Git] github: server certificate verification failed 오류
입력하면 해결! - 참고 https://askubuntu.com/questions/29665/how-do-i-apt-get-a-32-bit-package-on-a-64-bit-installation (Publish Date: 2020-10-23)

[Docker] docker container의 root password 설정 방법
RUN echo "root:root" | chpasswd Dockerfile 에 위의 명령을 추가하면 된다. 참고 https://qastack.kr/server/773224/how-can-i-set-the-root-password-in-a-docker-container-from-a-script (Publish Date: 2020-09-22)

[EBSe 톡톡] . 네가 아는 것을 좀 알려줘
네가 아는 것을 좀 알려줘 - pick one's brain (=지혜, 정보, 조언 등을 구하다) ex. That problem is a no-brainer. (=정말 쉽다!) A. I can't think of anything. Let me pick your brain (about ~~). B1. Well, what do you want to know about? B2. Sure. What can I help you with? B3. Sorry, not right now. I'm really busy. (Publish Date: 2020-09-16)

[ubuntu][bash] tab 자동완성 확장이 안될 때 방법
step 1. sudo apt-get install bash-completion step 2. sudo vi /root/.bashrc step 3. 아래 코드 부분의 주석을 제거 step 4. reboot (Publish Date: 2020-09-16)

[EBSe 톡톡] 371. 제가 ~하면 불편하세요?
Mind if I ~? 1. 제가 여기에 앉으면 불편하세요? A. Mind if I sit here? B. No, go ahead. 2. 제가 이 전화를 받으면 불편할까요? A. Mind if I take this call? B. Of course not. 3. 제가 먼저 가면 불편하세요? A. Mind if I head out first? B. Don't leave me here alone. (Publish Date: 2020-09-15)

[Bash] bash: ls: command not found
bash: ls: command not found 와 같이 기본적인 리눅스 명령어를 찾지 못한다고 할 때가 있습니다. 이 때는 PATH 경로에 기본 리눅스 명령 경로가 누락된 것이니, PATH="$PATH":/home/user/bin 추가하면 기본 명령어가 잘 실행됩니다. (Publish Date: 2020-09-15)

[SVN] svn: Can't convert string from 'UTF-8' to native encoding
Docker 구축 후, 컨테이너 내에서 svn 사용 중에 다음과 같은 에러가 발생했다. svn: Can't convert string from 'UTF-8' to native encoding: ~~~ 해결책: 콘솔 창에 export LANG=en_US.UTF-8 명령 후, 다시 svn 명령을 수행해보자 (Publish Date: 2020-09-15)

[EBSe 톡톡] 379. ~을 권합니다.
I suggest~ 1. 책을 먼저 읽어보실 것을 권합니다. A: I suggest you read the book first. B: How long is the book? 2. 연간 회원권을 구매하실 것을 권해드립니다. A: I suggest you get the yearly pass. B: Yeah, but it's way out of my budget. (way out of~ : ~를 초과하다) 3. 그분들이 버스로 이동하실 것을 권합니다. A: I suggest they go by bus. B: How long would that take?re (Publish Date: 2020-09-14)

---
추천1

댓글목록

등록된 댓글이 없습니다.

회원로그인

접속자집계

오늘
2,307
어제
2,445
최대
3,753
전체
754,290

그누보드5
Copyright © tvcommercialsong.com All rights reserved.