Join us to build the IT marketplace of the future!

Remote: Frontend programmer (React or Angular)

We’re looking for someone to implement a entirely front-end design in javascript given HTML designs for the app. The app will be built on:

  • Firebase for storage: https://firebase.google.com/
  • React or Angular for the majority of the code
  • Firebase functions: https://firebase.google.com/docs/functions/
It’s a innovative and fun project that will be built 90% on front end javascript code and completely serverless!

Obviously you need to be a extremely strong front-end javascript programmer. Ideally have 2+ years experience with frontend Javascript in Angular.js or React. Be able to write readable code and comment in english. Be able to read english documentation. Be able to work alone remotely.

Monthly: 2500 USD or ~17,000 RMB

Get paid on paypal and maybe skip tax ;)

Bonus skills: Knows how to use python

美国湾区初创公司远程雇佣前端程序员(react或Angular)

工作内容:

用html, javascript实现app的前端设计,该app存储使用Firebase,框架使用React或Angular,纯前端,项目新颖有趣

要求: 优秀的前端JavaScript程序员,理想有两年以上Angular.js或React经验,英文读写能力好,可写英文注释,可远程独立工作

加分项: 擅长python

待遇:

长期稳定,美元现金paypal支付,按目前汇率每月实得人民币17300+

Find the largest multiple

Given a 4 by 4 matrix:
10 45 90 11
23 68 29 09
49 39 23 78
46 92 21 90

Find the largest multiple of 3 consecutive numbers that are in a line:
*For the first horizontal line, the two multiples are 10 * 45 * 90, or 45 * 90 * 11
*This applies to horizontal, vertical, and diagonal lines.


window.items = [[10, 45, 90, 11],[23,68, 29, 9],[49, 39, 23, 78], [46, 92, 21, 90]];
window.items2 = [[34, 84, 75, 35],[55,21,89,36],[75,95,35,64], [25,45,95,49]];

window.find_largest = function(square) {
	
}
//Your answer should match these strings
console.log(find_largest(items)===299880);
console.log(find_largest(items2)===496375);