Skip to content

Commit fca121d

Browse files
authored
Update README.md
1 parent 30b9a8b commit fca121d

File tree

1 file changed

+1
-1
lines changed
  • solution/1800-1899/1863.Sum of All Subset XOR Totals

1 file changed

+1
-1
lines changed

solution/1800-1899/1863.Sum of All Subset XOR Totals/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public:
286286
int subsetXORSum(vector<int>& nums) {
287287
int n = nums.size();
288288
int ans = 0;
289-
function<void(int, int)> dfs = [&](int i, int s) {
289+
auto dfs = [&](this auto&& dfs, int i, int s) {
290290
if (i >= n) {
291291
ans += s;
292292
return;

0 commit comments

Comments
 (0)