일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘
- LV1
- 주정부이민
- 방통대
- mpnp
- machine learning
- 머신러닝
- omscs
- 컴퓨터과학과
- 선형대수
- MATLAB
- 방송통신대학교
- cpp
- 온라인석사
- C++
- 캐나다 영주권
- 코딩테스트
- 매트랩
- EOI
- leetcode
- zeros
- 조지아텍
- 기본
- LAA
- 딥러닝
- Plotting
- Deep learning
- 프로그래머스
- 마니토바
- 개발자
- Today
- Total
목록전체 글 (137)
Krononberg

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

reddit OMSCS 불합격 사유. - CS 학점이 없다!! 즉, 아무리 프로그래밍 경험이 있고, 영어를 잘해도 인증된 기관에서의 CS 학점 이수가 매우 중요한 것을 알 수 있음. 표본1) - 지원학기 fall 2022 - 학점 2.7 (통계학과) - 경력 data scientist 1년 data analyst 3년(골드만삭스, 대학교) - 기타 omsa는 합격. accredited University 에서 cs course 수강 경험 없음 표본 2) - 지원학기 fall 2022 - 학점 3.9 (top15 대학 예술 학사, top10 석사) - 경력 SWE 1년 data analyst 1년 - 기타 부트캠프 및 코스 듣고 cs 커리어 전향. accredited University 에서 cs cour..

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; } };

class Solution { public: string reformatNumber(string number) { if(number.size()