b******i 发帖数: 914 | 1 1. Design a class to serialize and deserialize an object
2. validate UTF-8 string
都是从面经里面看来的,没有具体的题目。可惜我连UTF-8是什么结构都不太了解。。
。这种会考吗 |
w****a 发帖数: 710 | 2 第二题G考过,也是高频题之一,
在glass door上看过完整题:
After given clearly definition of UTF-8 format. ex: 1-byte : 0b0xxxxxxx 2-
bytes:.... Asked to write a function to validate whether the input is valid
UTF-8. Input will be string/byte array, output should be yes/no.
基本上就是bit manipulation的题目
你可以看下这个答案能不能用
http://stackoverflow.com/a/13161464/2954435 |
b******i 发帖数: 914 | 3 谢谢啊!
2-
valid
【在 w****a 的大作中提到】 : 第二题G考过,也是高频题之一, : 在glass door上看过完整题: : After given clearly definition of UTF-8 format. ex: 1-byte : 0b0xxxxxxx 2- : bytes:.... Asked to write a function to validate whether the input is valid : UTF-8. Input will be string/byte array, output should be yes/no. : 基本上就是bit manipulation的题目 : 你可以看下这个答案能不能用 : http://stackoverflow.com/a/13161464/2954435
|