波士顿genospace电面+系统设计

波士顿的genospace, 电面45分钟:先介绍他们公司做什么的, 有什么产品, 码农组和数据组分工等等,再问你一些简历上的项目,然后给出两道Leetcode 题。
AnagramGiven two strings s and t, write a function to determine if t is an anagram of s.An anagram is a word formed by rearranging the letters of a different word.For example,s = “anagram”, t = “nagaram”, return true.s = “rat”, t = “car”, return false.

FibonacciWrite a function to calculate the nth fibonaccif(0) = 0f(1) = 1f(n>1) = f(n-1) + f( n -2)
这两题比较简单,过了之后一道系统设计题, take home, 自己和面试官说需要多少时间,一般都会同意, 然后做完后按时将结果发email给面试官,2-3天后给拒信或者onsite 通知,我挂在了系统设计题。大家对这道系统设计题有什么思路欢迎留言,一起讨论讨论。