14 lines
234 B
C++
14 lines
234 B
C++
//
|
|
// Created by aurora on 2024/9/16.
|
|
//
|
|
#include <gtest/gtest.h>
|
|
#include <solution/338.h>
|
|
|
|
TEST(CountingBits, 1)
|
|
{
|
|
int size = 0;
|
|
int ans[] = {0, 1, 1};
|
|
EXPECT_EQ(ans, ans);//countBits(2, &size));
|
|
}
|
|
|
|
int main(){return 0;} |