일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 반복문
- 마리아 DB
- publish
- 오늘도 우라라 펫 공략
- 오늘도 우라라 공략
- while
- 데이터 베이스
- Subscribe
- 등차수열
- topic
- 환경설정
- JungOl
- mariaDB
- C++
- ros
- 우분투
- 오늘도 우라라
- ubuntu
- install opencv-4.4.0 on ubuntu 22.04
- MSG
- 기초
- mysql
- 리눅스
- 그랑사가
- LeetCode
- Linux
- 토픽
- C언어
- 프로그래밍
- 오늘도 우라라 펫
- Today
- Total
목록분류 전체보기 (219)
하루의 쉼터
1. 터미널 창을 열어줍니다. 2. 필요 패키지 업데이트 sudo apt update 3. 필요 패키지 업데이트 sudo apt-get upgrade 4. 필요 패키지 업데이트 sudo apt install software-properties-common 5. 파이썬 필요 자료 설치 sudo add-apt-repository ppa:deadsnakes/ppa 6. 업데이트 7. 파이썬 필요 라이브러리 설치 sudo apt-get install build-essential python-dev 8. 파이썬 pip등 라이브러리 설치 sudo apt-get install python-setuptools python-pip 8. 라이브러리 설치 sudo apt-get install libncursesw5-dev ..
* Ubuntu 14.04 참고 2019/09/09 - [프로그래밍 - 환경설정/Linux] - [환경설치] VM VirtualBox 설치 , Ubuntu 14.04 설치 1. 설치 공식 홈페이지 주소 : releases.ubuntu.com/16.04/ Ubuntu 16.04.7 LTS (Xenial Xerus) Select an image Ubuntu is distributed on two types of images described below. Desktop image The desktop image allows you to try Ubuntu without changing your computer at all, and at your option to install it permanently lat..
Question : Merge two sorted linked lists and return it as a new sorted list. The new list should be made by splicing together the nodes of the first two lists. Example 1 : Input: l1 = [1,2,4], l2 = [1,3,4] Output: [1,1,2,3,4,4] Example 2 : Input: l1 = [], l2 = [] Output: [] Example 3 : Input: l1 = [], l2 = [0] Output: [0] Constraints : The number of nodes in both lists is in the range [0, 50] -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? Example 1: Input: nums = [2,2,1] Output: 1 Example 2: Input: nums = [4,1,2,1,2] Output: 4 Example 3: Input: nums = [1] Output: 1 Constraints: 1
오류 해결 Mysql을 Connet하는 경우 아래와 같은 Error 메세지를 만나는 경우가 종종 있습니다. 로그인이 불가하다는건데 문제는 다음과 같습니다. 0. 로그인 정보가 잘못된 경우. 1. 외부 접속을 열어주지 않은 경우. 2. 비밀번호를 설정하지 않은 경우. 3. 비밀번호를 제대로 설정하지 않은경우. 위에서 부터 차근 차근 문제를 해결해 나가면 문제 없이 해결할 수 있을 것 입니다. 0. 로그인 정보가 잘못된 경우는 IP와 Port를 정확하게 확인해봅니다. MySQL 8.x 버전 기준입니다. 1. 외부 접속을 열어주지 않은 경우. create user '계정명'@'%' identified by 'password'; grant all privileges on *.* to '계정명'@'%'; flus..
Question : Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets. Open brackets must be closed in the correct order. Example 1:Input: s = "()"Output: true Example 2:Input: s = "()[]{}"Output: true Example 3:Input: s = "(]"Output: false Example ..
Question : Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. Input: 38 Output: 2 Explanation: The process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, return it.Question Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would hav..
Question Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. Input: 38 Output: 2 Explanation: The process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, return it. Solution.h //Hearder #include #include class Solution { private : int input_num; public: int addDigits(int num); int inputData(); void outputData(int num); }; Solution.cpp ..