# アルゴ式: 922 Q7. 強平衡二分木の頂点数 (Swift)

## [Q7. 強平衡二分木の頂点数](https://algo-method.com/tasks/922)

- 単純に1段ずつどれぐらい必要か足して計算してしまった
- ほかの方の解答だとみんな単純なべき乗計算で答えを出されていた
- 本質的なところではないけれど、気付かなかったのちょっと悔しい
- ビット演算子が慣れていないので、使って再実装
- [strmikanのそれ](https://algo-method.com/submissions/440966)と一緒になるのは単純な問題だからしかたない

[editorial]: https://algo-method.com/tasks/922/editorial

### 提出

- [AC](https://algo-method.com/submissions/441538)
- [Bitwise](https://algo-method.com/submissions/441544)
