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

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()

class Solution { public: int distributeCandies(vector& candyType) { sets; for(auto i : candyType) s.insert(i); return min(candyType.size()/2,s.size()); } };