728x90 leetcode 567) Permutation in String LV. Medium 🧐 https://leetcode.com/problems/permutation-in-string/ Permutation in 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 문제 Given two strings s1 and s2, return true if s2 contains a permutation of s1, or false otherwise. In other words, return true if one of s1's p.. 2022. 2. 11. Mac 환경에서 Flutter 설치 Flutter는 IOS와 Android를 한 번에 만들 수 있는 프레임워크(Framework)이다. 한 번에 아이폰(iphone)과 안드로이드(Android)를 모두 개발할 수 있다는 장점을 가졌다. 아래 링크에 들어가 macOS 전용 Flutter SDK를 다운받는다. https://docs.flutter.dev/get-started/install/macos macOS install How to install on macOS. docs.flutter.dev 원하는 위치에 가서 압축을 푼다. unzip ~/Downloads/flutter_macos_2.10.0-stable.zip 압축을 풀고 환경 변수(영구)를 설정해준다. $ cd ~ $ nano .zshrc .zshrc에 밑의 내용 입력 후 저장 $ .. 2022. 2. 9. leetcode 532) K-diff Pairs in an Array LV. Medium 🧐 https://leetcode.com/problems/k-diff-pairs-in-an-array/ K-diff Pairs in an Array - 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 문제 Given an array of integers nums and an integer k, return the number of unique k-diff pairs in the array. A k-diff pair is an integer pa.. 2022. 2. 9. PlatformIO C++ 라이브러리 사용하기 PlatformIO를 IDE로 사용하니 c++ 라이브러리를 추가할 수 없었다.. 아무리 구글링해도 나오지 않음..! 열심히 찾다가 생각난 해결책이 내가 쓰려고 하는 c++ 라이브러리를 직접 다운받아 내 프로젝트 폴더에 넣어주고 platformio.ini에 라이브러리 경로를 추가해주면 되겠다였다! 💡 라이브러리 다운로드 나는 밑에 링크에 있는 라이브러리를 다운받았다. c++에서 쓰는 기본적인 라이브러리들이 들어있다. 밑의 라이브러리는 이라고 내가 원하는 헤더를 선택해 추가하는 것이 아니라 로 헤더를 추가하면 모든 밑의 깃에 있는 모든 라이브러리가 한 번에 추가된다. https://github.com/mike-matera/ArduinoSTL GitHub - mike-matera/ArduinoSTL: An S.. 2022. 2. 9. PlatformIO 라이브러리 추가 라이브러리 종속성 변경 lib_deps = 경로 라이브러리 디렉토리 추가 lib_extra_dirs = 경로 https://docs.platformio.org/en/latest/librarymanager/quickstart.html Quick Start — PlatformIO latest documentation PlatformIO Library Manager allows one to specify project dependencies (lib_deps) that will be installed automatically per project before environment processing. You do not need to install libraries manually. The only one s.. 2022. 2. 9. leetcode 258) Add Digits LV. Easy 😎 https://leetcode.com/problems/add-digits/ Add Digits - 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 문제 Given an integer num, repeatedly add all its digits until the result has only one digit, and return it. Example 1: Input: num = 38 Output: 2 Explanation: The process.. 2022. 2. 8. leetcode 389) Find the Difference LV. Easy 😎 https://leetcode.com/problems/find-the-difference/ Find the Difference - 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 문제 You are given two strings s and t. String t is generated by random shuffling string s and then add one more letter at a random position. Return the.. 2022. 2. 7. 맵리듀스(MapReduce)란 무엇일까? 구글의 최고 레벨(LV11)에 계시는 두 분 중 한 명인 제프 딘에 대해 찾아보다가 알게 된 맵리듀스! 제프 딘에 대해 궁금하다면? 아래 링크 클릭! 더보기 https://www.newyorker.com/magazine/2018/12/10/the-friendship-that-made-google-huge/amp?__twitter_impression=true The Friendship That Made Google Huge Coding together at the same computer, Jeff Dean and Sanjay Ghemawat changed the course of the company—and the Internet. www.newyorker.com 맵리듀스란? 맵리듀스 = 맵(Map) +.. 2022. 2. 7. leetcode 80) Remove Duplicates from Sorted Array II LV. Medium 🧐 https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/ Remove Duplicates from Sorted Array II - 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 문제 Given an integer array nums sorted in non-decreasing order, remove some duplicates in-place such that each .. 2022. 2. 6. ESP8266에 MCP2515 CAN 통신 모듈 연결하기 핀 연결 정보 예제 소스 코드 https://github.com/Metaln00b/NodeMCU-BlackBox GitHub - Metaln00b/NodeMCU-BlackBox: ESP8266 based CAN-Bus Diagnostic Tool ESP8266 based CAN-Bus Diagnostic Tool. Contribute to Metaln00b/NodeMCU-BlackBox development by creating an account on GitHub. github.com 2022. 2. 6. 이전 1 ··· 4 5 6 7 8 9 10 ··· 17 다음 728x90