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
| const Redis = require("ioredis"); | |
| const redis = new Redis(); | |
| const ZSET_KEY = 'flows'; | |
| async function seedFlows() { | |
| const flows = [ | |
| 'payment-initiation', | |
| 'payment-status', |
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
| #include<bits/stdc++.h> | |
| int mat[10000][10000]; | |
| const int n = 10000; | |
| void rowByRow() { | |
| for (int i = 0; i < n; ++i) { | |
| for (int j = 0; j < n; ++j) { | |
| mat[i][j] = 1; | |
| } |