본문 바로가기
728x90

전체 글162

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.
leetcode 525) Contiguous Array LV. Medium 🧐 https://leetcode.com/problems/contiguous-array/description/ Contiguous 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 a binary array nums, return the maximum length of a contiguous subarray with an equal number of 0 and 1. Example 1: Input: nums = [0,.. 2022. 2. 5.
leetcode 23) Merge k Sorted Lists LV. Hard 🥵 https://leetcode.com/problems/merge-k-sorted-lists/ Merge k Sorted Lists - 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 an array of k linked-lists lists, each linked-list is sorted in ascending order. Merge all the linked-lists into one sorted linked-.. 2022. 2. 5.
728x90