(THIS BLOG IS STILL IN PROGRESS)
University | Program | Span | Application time | Requirements | Tuition | Features |
---|---|---|---|---|---|---|
UCI | MCS | 15 months | 2022.10.3~2023.3.1 | TOEFL 80, IELTS 7(each >= 6), 3 rec letters | around 50k | |
SJSU | Bay area | |||||
USC | Los Angelos | |||||
Santa Clara | Bay area | |||||
USF | San Francisco, Close to F, G | |||||
SFSU | San Francisco, Close to F, G | |||||
UW-Tacoma | Seattle | |||||
Northeastern University Seattle | Seattle | |||||
NYU Tandon | NY |
NEU Vancouver:
FDU Vancouver:
NYIT
SFU
TRU
UBC
UNBC
UVic
此处主要分析OINP的Masters Graduate Stream项目。
The EOI is comprised of two components, for a maximum EOI score of 200 points:
OINP will assess and score your business concept. Your business concept will need to score at least 37 of the available 74 points (50%) to be placed in the EOI selection pool.
Whether you are issued an invitation to apply (ITA) is based on your EOI rank in the selection pool. Only the top ranked candidates are invited to apply.
Graduate diploma is cheap(cheaper than master), quick(often one year) and has low bars(lower than master).
Great for family. Spouse can get a work visa and kids can receive free compulsory education.
Even if not qualified for CS master, apply other majors like engineering, mechanics, auto repair, electrician can also get a job easily.
Manitoba is ideal for graduate diploma. One year diploma, get a job and IELTS 6/6/6/6 to apply. Said to be the easiest.
NB is even easier. Same as manitoba and can apply before graduation if got work experience.
UWinnipeg (Graduate diploma)
UManitoba (Graduate diploma)
Red River Polytech (College)
University of Regina (Master)
Concordia University
(1)核心基础课-权重较高
商科主要指的数学课,比如高数、微积分、线代、概率论这些课程,专业课程比如宏微观经济学,这些课程的学分一般都很高,认证的时候权重也很高。
(2)大陆特色课-权重降低/变0
大学英语从5分降为2分,毛邓理论从4分降为1分,毕业论文从16分降为4分。体育、军事理论、认识实习、思想政治课社会实践、大学生职业规划就业指导、形式与政策等涉及到体育类,政策类,社会实践和指导类课程均为0学分。
(3)选修课-维持/降学分
专业选修课比较重要,一般维持原有学分;公共选修课会被降学分或者按0学分处理。
coop
Align: The Northeastern University Align program provides a direct path to a Master of Science in Computer Science (MSCS) for non-computer science majors without programming experience.
// 804. Unique Morse Code Words (Easy) | |
// https://leetcode.com/problems/unique-morse-code-words/ | |
// 1. Naive answer: | |
const alphabetTable: {[prop:string]: string} = { | |
'a': ".-", | |
'b': "-...", | |
'c': "-.-.", | |
'd': "-..", | |
'e': ".", | |
'f': "..-.", | |
'g': "--.", | |
'h': "....", | |
'i': "..", | |
'j': ".---", | |
'k': "-.-", | |
'l': ".-..", | |
'm': "--", | |
'n': "-.", | |
'o': "---", | |
'p': ".--.", | |
'q': "--.-", | |
'r': ".-.", | |
's': "...", | |
't': "-", | |
'u': "..-", | |
'v': "...-", | |
'w': ".--", | |
'x': "-..-", | |
'y': "-.--", | |
'z': "--.." | |
} | |
function uniqueMorseRepresentations(words: string[]): number { | |
let uniqueTransformations = new Set<string>() | |
words.forEach(word => { | |
let transformation: string = '' | |
for(let i = 0; i < word.length; i++) { | |
transformation += alphabetTable[word[i]] | |
} | |
console.log(transformation) | |
uniqueTransformations.add(transformation) | |
}) | |
return uniqueTransformations.size | |
}; | |
// 2. Refined Answer: | |
function uniqueMorseRepresentations_refined(words: string[]): number { | |
const morseCodes: string[] = [".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."] | |
const transformationSet = new Set<string>() | |
words.forEach(word => { | |
let wordInMorse = '' | |
for (let i = 0; i < word.length; i++) { | |
wordInMorse += morseCodes[word[i].charCodeAt(0) - 'a'.charCodeAt(0)] | |
} | |
transformationSet.add(wordInMorse) | |
}) | |
return transformationSet.size | |
} | |
console.log(uniqueMorseRepresentations_refined(["gin","zen","gig","msg"])) |
test1
// 804. Unique Morse Code Words (Easy) | |
// https://leetcode.com/problems/unique-morse-code-words/ | |
// 1. Naive answer: | |
const alphabetTable: {[prop:string]: string} = { | |
'a': ".-", | |
'b': "-...", | |
'c': "-.-.", | |
'd': "-..", | |
'e': ".", | |
'f': "..-.", | |
'g': "--.", | |
'h': "....", | |
'i': "..", | |
'j': ".---", | |
'k': "-.-", | |
'l': ".-..", | |
'm': "--", | |
'n': "-.", | |
'o': "---", | |
'p': ".--.", | |
'q': "--.-", | |
'r': ".-.", | |
's': "...", | |
't': "-", | |
'u': "..-", | |
'v': "...-", | |
'w': ".--", | |
'x': "-..-", | |
'y': "-.--", | |
'z': "--.." | |
} | |
function uniqueMorseRepresentations(words: string[]): number { | |
let uniqueTransformations = new Set<string>() | |
words.forEach(word => { | |
let transformation: string = '' | |
for(let i = 0; i < word.length; i++) { | |
transformation += alphabetTable[word[i]] | |
} | |
console.log(transformation) | |
uniqueTransformations.add(transformation) | |
}) | |
return uniqueTransformations.size | |
}; | |
// 2. Refined Answer: | |
function uniqueMorseRepresentations_refined(words: string[]): number { | |
const morseCodes: string[] = [".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."] | |
const transformationSet = new Set<string>() | |
words.forEach(word => { | |
let wordInMorse = '' | |
for (let i = 0; i < word.length; i++) { | |
wordInMorse += morseCodes[word[i].charCodeAt(0) - 'a'.charCodeAt(0)] | |
} | |
transformationSet.add(wordInMorse) | |
}) | |
return transformationSet.size | |
} | |
console.log(uniqueMorseRepresentations_refined(["gin","zen","gig","msg"])) |
test2
// 804. Unique Morse Code Words (Easy) | |
// https://leetcode.com/problems/unique-morse-code-words/ | |
// 1. Naive answer: | |
const alphabetTable: {[prop:string]: string} = { | |
'a': ".-", | |
'b': "-...", | |
'c': "-.-.", | |
'd': "-..", | |
'e': ".", | |
'f': "..-.", | |
'g': "--.", | |
'h': "....", | |
'i': "..", | |
'j': ".---", | |
'k': "-.-", | |
'l': ".-..", | |
'm': "--", | |
'n': "-.", | |
'o': "---", | |
'p': ".--.", | |
'q': "--.-", | |
'r': ".-.", | |
's': "...", | |
't': "-", | |
'u': "..-", | |
'v': "...-", | |
'w': ".--", | |
'x': "-..-", | |
'y': "-.--", | |
'z': "--.." | |
} | |
function uniqueMorseRepresentations(words: string[]): number { | |
let uniqueTransformations = new Set<string>() | |
words.forEach(word => { | |
let transformation: string = '' | |
for(let i = 0; i < word.length; i++) { | |
transformation += alphabetTable[word[i]] | |
} | |
console.log(transformation) | |
uniqueTransformations.add(transformation) | |
}) | |
return uniqueTransformations.size | |
}; | |
// 2. Refined Answer: | |
function uniqueMorseRepresentations_refined(words: string[]): number { | |
const morseCodes: string[] = [".-","-...","-.-.","-..",".","..-.","--.","....","..",".---","-.-",".-..","--","-.","---",".--.","--.-",".-.","...","-","..-","...-",".--","-..-","-.--","--.."] | |
const transformationSet = new Set<string>() | |
words.forEach(word => { | |
let wordInMorse = '' | |
for (let i = 0; i < word.length; i++) { | |
wordInMorse += morseCodes[word[i].charCodeAt(0) - 'a'.charCodeAt(0)] | |
} | |
transformationSet.add(wordInMorse) | |
}) | |
return transformationSet.size | |
} | |
console.log(uniqueMorseRepresentations_refined(["gin","zen","gig","msg"])) |
人人都歌颂二舅,但是没人想成为二舅;
人人都唾骂周公子,但是人人都想做周公子。
谎言不会伤人,真相才是快刀。