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
| { | |
| "category": "music", | |
| "modules": [ | |
| { | |
| "id": "gaan-bajna", | |
| "name": "Gaan-Bajna", | |
| "author": "Your Name", | |
| "version": "3.0.0", | |
| "description": "Bangla-first intelligent music engine with excellent English music support.", | |
| "labels": [ |
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
| /* | |
| ========================================================= | |
| 8SPINE MODULE | |
| Gaan-Bajna | |
| Version: 3.0.0 | |
| Bangla-first intelligent music engine | |
| with excellent English music support. | |
| FEATURES |
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> | |
| using namespace std; | |
| vector<int>prime; | |
| bool mark[1000001]; | |
| void sieve(int n){ | |
| int N=n; | |
| mark[0]=1; |