diff --git a/codechef/ela_sorting_books.cpp b/codechef/ela_sorting_books.cpp new file mode 100644 index 0000000..6ae7ba3 --- /dev/null +++ b/codechef/ela_sorting_books.cpp @@ -0,0 +1,40 @@ +#include +using namespace std; +#define fastInp cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(0); +void solve(){ +int n,k; +cin>>n>>k; +int t[26] ; + memset(t,0,sizeof(t)); +string s; +cin>>s; +for(int i =0;i>t; + while(t--){ + solve(); + } + + return 0; +}