일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Deep learning
- 마니토바
- 컴퓨터과학과
- EOI
- 선형대수
- LV1
- 온라인석사
- 머신러닝
- 조지아텍
- C++
- 개발자
- 캐나다 영주권
- zeros
- mpnp
- omscs
- 매트랩
- 코딩테스트
- 방송통신대학교
- 주정부이민
- cpp
- Plotting
- 알고리즘
- 방통대
- machine learning
- 프로그래머스
- leetcode
- MATLAB
- 기본
- 딥러닝
- LAA
- Today
- Total
목록개발 로그 (114)
Krononberg
일단 큰 흐름에서 잘 나아가고 있는 듯 하다. 원하는 플랜으로 회사에서 일을 하면서 대학원 과정을 수강하고 있다. 회사도 어느 정도 적응을 하면서, 뭔가 바쁘면서도 무료함을 느끼는 평범한 일상의 궤도에 오른듯 하다. 다만, 목표를 되돌아봐야하는 시간을 가져야 되겠다고 생각했다. 내가 원하는 것은 좋은 가정을 이루는 것이었고, 좋은 가정을 이루려면 나 자신이 일상생활에서 행복해야하고, 일상생활에서 행복하려면 내가 좋아하는 일을 해야 하며, 그 일에 대한 어떤 형태로의 적절한 물질적, 감정적인 보상이 있고, 무엇보다 가치를 창출한다는 느낌이 있어야 했다. 그래서 결론적으로 나는 개발을 업으로 삼고 있다. 나는 개발이 마음에 들고, 만족한다. 다만 개발 커리어와 관련해서 삶에 큰 변화를 불러올 수 있는 구체적..
from collections import Counter str에 대해서, 각 char를 key로, 발생 빈도 수를 value를 하는 dict를 만들어줌. str = "hello" Counter(str) 하면 , { 'h' : 1 , 'e' : 1 , 'l' : 2, 'o' : 1 } 이렇게 나옴. dict for loop 는 for key, value in {dict}.items(): class Solution: def canConstruct(self, ransomNote: str, magazine: str) -> bool: from collections import Counter rans = Counter(ransomNote) magz = Counter(magazine) for key,value in..

class Solution { public: vector findDuplicates(vector& nums) { vectorres; mapm; for(int i =0; i

class Solution { public: int maximumPopulation(vector& logs) { int alive[101]={0,}; for(auto log : logs){ for(int i = log[0]-1950; i

🔑 map의 두번째 인자에 vector container도 삽입 가능! class Solution { public: vector groupAnagrams(vector& strs) { vectorres; mapm; for(auto &s : strs) { string tmp = s; sort(tmp.begin(),tmp.end()); m[tmp].push_back(s); } for(auto sub : m) { //cout

class Solution { public: vector findOcurrences(string text, string first, string second) { vectors; vectorres; for(int i =0; i

class Solution { public: int minOperations(vector& logs) { int res =0; for(auto l : logs){ if (l.find("..") != std::string::npos) { if(res!=0) res--; } else if(l.find(".") == std::string::npos){ res++; } } return res; } };