쟌's Blog

· Algorithm/Go
https://leetcode.com/problems/contains-duplicate/ Contains Duplicate - 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 package main func main() { nums := []int{1, 2, 3, 1} // nums := []int{1, 2, 3, 4} containsDuplicate(nums) } // 제출 코드 func containsDuplicate(nums []int) bool { intM..
· Server/Linux
scp ssh 원격 접속 프로토콜 기반으로 한 SecureCopy(scp) local 과 remote 에 있는 파일과 디렉토리 보내거나 가져올때 사용 1. 파일 1개를 보낼 때 (local -> remote) scp [옵션] [파일명] [remote_id]@[remote_ip]:[받는 위치] # scp test root@172.20.20.78:/tmp/test/ test 100% 8 0.0KB/s 00:00 2. 파일 여러개를 보낼 때 (local -> remote) scp [옵션] [파일명 1][파일명 2] [remote_id]@[remote_ip]:[받는 위치] # scp test1 test2 root@172.20.20.78:/tmp/test/ test1 100% 5 0.0KB/s 00:00 test..
· Algorithm/Go
https://leetcode.com/problems/rotate-string/ Rotate String - 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 package main import "strings" func main() { s := "abcde" goal := "cdeab" rotateString(s, goal) } //제출 코드 func rotateString(s string, goal string) bool { if len(s) != len(goa..
· Algorithm/Go
https://leetcode.com/problems/single-number/ Single Number - 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 package main func main() { nums := []int{2, 2, 1} // nums := []int{4,1,2,1,2} // nums := []int{1} singleNumber(nums) } // 제출 코드 func singleNumber(nums []int) int { result :=..
· Server/Git
Git 의 문제가 아닐 수도 있지만, 맥 업데이트(Monterey)를 하고나서 Git을 사용하려고하니 오류가 발생 limjian@Jians-MacBook-Pro-13 coding_practice % git xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 찾아보니 카탈리나, 빅서 에서도 발생한 문제였던것 같다. 생각해보니까 그때도 오류가 나서 찾아봤던 기억이 있네.. 해결방법 # xcode-select --install limjian@Jians-MacBook-Pro-13 coding_pr..
· Algorithm/Go
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 package main func main() { // nums := []int{3, 2, 3} nums := []int{2, 2, 1, 1, 1, 2, 2} majorityElement(nums) } // 제출 코드 func majorityElement(nums []int) int { numsMap..
SQL 개발자 자격시험의 과목은 총 2과목으로 구성되어 있으며 데이터 모델링의 이해 과목을 바탕으로 SQL 기본 및 활용을 수행하는 능력을 검정한다. https://www.dataq.or.kr/www/sub/a_04.do 데이터자격시험 SQL(Structured Query Language)은 데이터베이스를 직접적으로 액세스할 수 있는 언어로, 데이터를 정의하고(Data Definition), 조작하며(Data Manipulation), 조작한 결과를 적용하거나 취소할 수 있고(Transaction Con www.dataq.or.kr 정말 오랜만에 자격증 시험 공부를 하고 합격을 했다. SQLD 라는 시험을 알지도 못했는데, 입사 하고나니 회사에서 권유 하는 시험 중 하나이다. 사실 업무에 도움이 안 될거..
· Algorithm/Go
https://leetcode.com/problems/maximum-number-of-words-you-can-type/ Maximum Number of Words You Can Type - 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 package main import ( "strings" ) func main() { text := "leet code" brokenLetters := "lt" canBeTypedWords(text, brokenLetters) ..
임쟌
'분류 전체보기' 카테고리의 글 목록 (16 Page)