개발74 [leetcode] week1 - Happy Number https://leetcode.com/explore/challenge/card/30-day-leetcoding-challenge/528/week-1/3284/ Explore - LeetCode LeetCode Explore is the best place for everyone to start practicing and learning on LeetCode. No matter if you are a beginner or a master, there are always new topics waiting for you to explore. leetcode.com [잘못된] 풀이 1. 각 자리수의 합을 구한다. 2. 각 자리수의 합의 길이가 1이하일 때까지 계속 돌린다 3. 각 자리수의 합이 1이면 true,.. 2020. 4. 11. [leetcode] week1 - single number https://leetcode.com/explore/challenge/card/30-day-leetcoding-challenge/528/week-1/3283/ Account Login - 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 풀이 1. nums의 첫번째 원소를 리스트 L에 넣는다. 2. nums의 두번째 원소부터 마지막 원소까지 리스트 L과 비교를 한다. -> L에 있는 원소들과 nums[i]가 같으면 L의 원소를 제거한다. 비교를 멈춘다 3. 원소가 .. 2020. 4. 10. [프로그래머스] K번째 수 https://programmers.co.kr/learn/courses/30/lessons/42748?language=python3 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 문제 해석 1) array의 i번째 숫자부터 j번째 숫자까지 자르기 => array[i-1:j] 2) 자른 배열을 정렬하기 => 정렬 아무거나. python의 내장 sort 함수를 사용 3) 자른 배열의 k번째 숫자 => array[k-1] sort함수는 구글링 해보니 O(nlogn)인 것 같다 https://stackoverflow.com/questions/14434490/wh.. 2020. 4. 8. React Native에 AWS Amplify 설정하기 로그인 https://github.com/aws-samples/aws-amplify-auth-starters/blob/react-native/src/nav/auth/Auth.js https://dev.to/bastianbavaresco/social-authentication-with-aws-amplify-and-react-native-18op 이름 얻기 https://github.com/aws-amplify/amplify-cli/issues/2534 아래 Getting Started를 참고했다. https://aws-amplify.github.io/docs/js/start?platform=react-native Getting Started Create a new ‘plain’ JavaScript ES20.. 2020. 2. 10. gerrit + Apache2 설치 및 설정 🧚 작업 환경 ubuntu : 18.04 apache2 : 2.4.29-1ubuntu4.11 gerrit : 2.15.17 1 2 3 4 5 6 7 8 9 10 11 # 카카오 미러 서버로 변경 sudo vi /etc/apt/sources.list :%s/kr.archive.ubuntu.com/mirror.kakao.com # 패키지 목록을 불러온다 sudo apt update # 모든 패키지를 최신 버전으로 업그레이드 한다. sudo apt upgrade sudo apt install apache2=2.4.29-1ubuntu4.11 git-core git-review openjdk-8-jdk cs 1. gerrit에 https 적용 1-1. gerrit 설정 시 아래처럼 적용 *** HTTP Daemo.. 2020. 2. 3. parse json with default bash only json parser는 여러가지가 있지만(검색하면 젤 많이 나오는게 jq) ubuntu에 패키지를 맘대로 설치하지 못하면.. 슬퍼진다😭 하지만 전세계에 있는 사람들 중에 나와 같은 생각을 가진 사람들이 있나부다!!! parse json with default bash only https://askubuntu.com/questions/1167287/parse-json-with-default-bash-only $ curl ... | grep -Po '"name":"\K[^"]*' 2020. 1. 29. 이전 1 ··· 8 9 10 11 12 13 다음