2022 年「資訊科技產業專案設計」第 2 次作業
貢獻者: 藍筱裘 Basketball
🍙:interviewer 🏀:interviewee
217. Contains Duplicate
==模擬面試錄影==
測驗說明與問答
🍙:Given an integer array numbers, I want you to return ==true== if any value appears at least twice in the array, and return ==false== if every element is distinct.
2022 年「資訊科技產業專案設計」第 3 次作業
相關職缺與分析
Google - Software Engineer, Display, Pixel
Job DescriptionDevelop the whole display software stack for pixel devices.
Design, develop, test, deploy, maintain, and improve software.
Work closely with Android platform teams and display hardware teams to land Android features on Pixel devices.
Minimum qualifications:
[x] Bachelor's degree in Computer Science, Electrical Engineering, a related technical field, or equivalent practical experience.
2022 年「資訊科技產業專案設計」第 1 次作業
貢獻者: 藍筱裘 Basketball
🍙:interviewer 🏀:interviewee
9. Palindrome Number
==模擬面試錄影==
測驗說明與問答
🍙:Hello, Basketball! I want you to solve a simple question. ==Given an integer x, return true if x is a palindrome integer.== So, an integer is palindrome when it ==reads the same backward as forward.== For example, ==121== is palindrome while ==123== is not. I want you to simply declare a boolean function, and it returns true or false to tell me whether an interger is palindrome or not.