This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2025-02-04 18:03:25] Vercel CLI 40.0.0 | |
| Fetching deployment "uf-sase-website.vercel.app" in ufsasewebmasters-projects | |
| 2025-01-31T15:39:53.834Z Running build in Washington, D.C., USA (East) – iad1 | |
| 2025-01-31T15:39:53.979Z Cloning github.com/ufsasewebmaster/UF-SASE-Website (Branch: main, Commit: c9cf592) | |
| 2025-01-31T15:40:00.740Z Cloning completed: 6.758s | |
| 2025-01-31T15:40:02.391Z Restored build cache from previous deployment (49SnQ1Jy8txQWGhTAPWhZDrbuQKH) | |
| 2025-01-31T15:40:02.589Z Running "vercel build" | |
| 2025-01-31T15:40:03.119Z Vercel CLI 39.3.0 | |
| 2025-01-31T15:40:03.814Z Installing dependencies... | |
| 2025-01-31T15:40:03.850Z bun install v1.2.0 (b0c5a765) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Generate subsets recursively and iteratively | |
| void generateSubsetsRecursively(int idx, int n, vector<int> &subset) | |
| { | |
| if (idx == n) | |
| { | |
| // Do something with subset here | |
| } | |
| else { | |
| generateSubsetsRecursively(idx+1, n, subset); |