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
// app level | |
plugins { | |
id 'com.android.application' | |
//id 'com.google.gms.google-services' | |
//to read key from local.properties | |
id 'com.google.secrets_gradle_plugin' version '0.5' | |
} | |
// https://guides.codepath.com/android/Storing-Secret-Keys-in-Android#hidden-in-buildconfigs |
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
/* | |
@author Hasan Masum | |
@date 26 aug, 2021 | |
tutorial followed: https://cs.stackexchange.com/questions/11620/fractional-knapsack-in-linear-time/11622#11622 | |
*/ | |
#include<bits/stdc++.h> | |
using namespace std; | |
// fractional knapsack | |
struct item{ |
NewerOlder