[717] 1-bit and 2-bit Characters
Easy array
We have two special characters:
The first character can be represented by one bit 0. The second character can be represented by two bits (10 or 11). Given a binary array bits that ends with 0, return true if the last character must be a one-bit character.
Example 1:
Input: bits = [1,0,0]
Output: true
Explanation: The only way to decode it is two-bit character and one-bit character.
So the last character is one-bit character.
Example 2:
Input: bits = [1,1,1,0]
Output: false
Explanation: The only way to decode it is two-bit character and two-bit character.
So the last character is not one-bit character.
Constraints:
1 <= bits.length <= 1000
bits[i] is either 0 or 1.
解答 本题可以采用常规的遍历方式,主要是对题意的理解,默认只会有10,11,0这三种形式出现
func isOneBitCharacter(bits []int) bool {
if len(bits) == 0 {
return false
}
index := 0
for index < len(bits) {
if bits[index] == 1 {
index += 2
continue
}
if bits[index] == 0 {
if index == len(bits)-1 {
return true
}
index += 1
continue
}
}
return false
}
func isOneBitCharacter(bits []int) bool {
l := len(bits)
for index := 0; index < l; index++ {
if index == l-1 {
return true
}
if bits[index] == 1 {
index += 1
}
}
return false
}
- HTAP(Hybird transaction/analytical processing)
- How We Build an HTAP Database That Simplifies Your Data Platform
- The Past, Present, and Future of TiDB as an HTAP Database
- Making an HTAP Database a Reality: What I Learned From PingCAP’s VLDB Paper
- 最小Demo体验与完善的清理机制 最近在看TiDB的相关资料,再结合之前的SkyWalking的show case,Quick Start Guide for the TiDB Database Platform和SkyWalking showcase;由此想到一个官方的起步教程已经非常简练完善,再结合官方提供的相关工具,就可以快速搭建起一个包括数据与UI界面的体验环境,极大了降低了学习者的初次使用的学习成本,同时也非常友好的向学习者展示了项目的功能,非常容易引入学习者去尝试使用项目。
- 传统行业数据架构发展变化
文章梳理了数据架构演进的几个阶段,非常值得参考借鉴
- 单一数据库集群
- TP和AP分离
- 大数据的引入
- HTAP+云原生