일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- scss
- vuetify
- var
- vue.js
- C#
- nginx
- bash
- dotenv
- docker
- 보안
- 앙상블
- leetcode
- generic
- C++
- git
- condition
- BOJ
- TypeScript
- Python
- VUE
- loop
- machine learning
- JavaScript
- security
- property
- AI
- type
- Clone
- webpack
- npm
- Today
- Total
목록분류 전체보기 (162)
ice rabbit programming
https://leetcode.com/problems/combine-two-tables/ Combine Two Tables - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com # Write your MySQL query statement below SELECT Person.FirstName, Person.LastName, Address.City, Address.State From Person LEFT JOIN Address ON Person.PersonId=Add..
최근에 티스토리를 시작했는데, 원래도 검색할 때 자주 티스토리가 나왔어서 코드 블럭 플러그인이 최근에 나온 것은 약간 의외였다. 글 작성 시에 코드 블럭이 있지만 자동 적용되진 않고, 스킨 관리에서 플러그인을 설치해주면 약 10개 정도의 언어를 지원한다. highlight.js같은 것을 업로드해서 사용하는 것도 있긴 한데, 번거로워서 하지 않고 있었는데, 간편한 해결법을 알아냈다. 글 작성할 때 기본모드로 되어 있는데, 다 쓴 후에 마크다운으로 바꾸고, ``` 옆에 언어를 적으면 발행 시 적용이 된다. ex) ``` CS public class ... 과 같은 식이다. 단, 모드 변경할 때 기본 모드에서 작성해둔 것이 흐트러질 수 있으므로 주의하자
https://leetcode.com/problems/customers-who-never-order/ Customers Who Never Order - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com SQL을 사용하는 문제를 간만에 풀었다. 어려운 문제는 아니고 JOIN과 NOT IN으로 차집합을 구하는 문제였다. # Write your MySQL query statement below SELECT Customers.Name AS Customers From Cus..
https://leetcode.com/problems/add-binary/ Add Binary - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 이 문제도 제목 그대로 이진수로 주어지는 string을 더해서 string으로 반환하는 문제이다. 논리회로 단계에서 Adder를 만들듯이 구현하였다. public class Solution { public string AddBinary(string a, string b) { int shortLength = (a.Leng..
https://leetcode.com/problems/same-tree/ Same Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 제목 그대로 주어진 Tree가 동일한 Tree인지 판단하는 문제이다. DFS를 통해 순회하면서 노드의 값들을 비교하는 식으로 구현하였다. 간만에 메모리와 시간 모두에서 100%를 기록하였다. /** * Definition for a binary tree node. * struct TreeNode { * int val; * ..
https://leetcode.com/problems/majority-element/ Majority Element - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 가장 많이 등장하는 원소를 찾아내는 문제이다. 별 생각 없이 map을 이용해 풀었다. class Solution { public: int majorityElement(vector& nums) { int size = nums.size(); map counts; for(int i=0;isecond)++..
https://leetcode.com/problems/pascals-triangle/ Pascal's Triangle - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 윗 열 두 개의 합이 아래 원소가 되는 파스칼 삼각형 문제이다. 정직하게 구현했다. class Solution { public: vector generate(int numRows) { vector pascal; if(numRows
https://leetcode.com/problems/maximum-depth-of-binary-tree/ Maximum Depth of Binary Tree - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 바로 전 문제와 반대로 가장 깊은 leaf node의 depth를 구하는 문제이다. 간단한 DFS 문제이고, 재귀를 이용해 풀었다. /** * Definition for a binary tree node. * struct TreeNode { * int va..