Skip to content

Commit 6c9c22b

Browse files
committed
Update test descriptions
1 parent 44f75f2 commit 6c9c22b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

solutions/1356-sort-integers-by-the-number-of-1-bits/solution.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import solution from './solution';
22

3-
describe('401. Binary Watch', () => {
3+
describe('1356. Sort Integers by The Number of 1 Bits', () => {
44
[
55
[[0,1,2,3,4,5,6,7,8], [0,1,2,4,8,3,5,6,7]],
66
[[1024,512,256,128,64,32,16,8,4,2,1], [1,2,4,8,16,32,64,128,256,512,1024]],

solutions/2433-find-the-original-array-of-prefix-xor/solution.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import solution from './solution';
22

3-
describe('17. Letter Combinations of a Phone Number', () => {
3+
describe('2433. Find The Original Array of Prefix Xor', () => {
44
[
55
[[5,2,0,3,1], [5,7,2,3,2]],
66
[[13], [13]],

solutions/2705-compact-object/solution.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import solution from './solution';
22

3-
describe('1480. Running Sum of 1d Array', () => {
3+
describe('2705. Compact Object', () => {
44
it('Case 1', () => {
55
const input = [null, 0, false, 1];
66
const expected = [1];

0 commit comments

Comments
 (0)