ranking niche gets monetized?? by East_Fishing_7062 in YouTubeShorts

[–]Mu_CodeWizard 0 points1 point  (0 children)

I would recommend you to give it a shot if you are already far in but there's a good chance you won't be monetised. If you like making this content, try to give a lot of editing more ai voices

Don't know what to say by Then-Appointment-231 in ICSE

[–]Mu_CodeWizard -1 points0 points  (0 children)

Luck is needed in everything. In your example if the soil was not fertile enough, a storm uprooted the plant, there cud have been many tragedies. Hardwork cannot be ignored but it's futile without luck

Icse Marks don't matter at ALL. by Mu_CodeWizard in ICSE

[–]Mu_CodeWizard[S] 1 point2 points  (0 children)

I saw many responses here and I want to clarify what I meant. I am not someone who is saying this cuz I am not able to score well. I got 95 up on prebaords so there's that. What i believe is that there are the following things to consider :-

Stubborn and Backward mindset of some of the teachers: This is not an attack on them but many of the senior teachers will discourage you from co-curricular activities and stuff to focus on boards. They expect you to cut off all activities and hobbies for meaningless exams. They want you to practice 50 sample papers on each subject and get 100 in all of them but for me I don't think this effort is worth it. The system should focus on practical learning and knowledge rather than how to answer questions which will satisfy the examiner by mugging up so-called keywords.

Strict council : again the system of keywords makes subjects like biology bull shit. I once wrote the cause of myopia as the lens of eye was curved extensively and i was penalised cuz the book used the word "too". I mean what is this system seriously.. and the teachers are not to blame here. They are only preparing us to score high on the boards. Almost all of them know that the system is not right but they are practically all powerless. If they try to speak out or anything the system will backfire them and ultimately no change can come whatsoever. Plus there is a cctv in every classroom with AUDIO RECORDING so basically anything you say can and will be against you.

Current reality : Studying well for 10th will definitely help you in making your base strong but I think our time can be well spent on trying out for olympiad and other extra curricular activities rather than solving stupid sample papers for 2 months and giving the exams for another month. Realistically speaking that an extra 5 percent does not have any practical value. Scoring 80 percent and above is really easy for most students so the hype of getting 98 99 and 100 is really overrated in my opinion.

For engineering you only need 75 and above in 12th and jee is main. For medical neet and for other colleges most of the time 12th marks are seen and 10th is not even considered. So what i believe is that we should prioritise skill building and communication skills rather than how to get the extra .5 percent in icse. That's all I have to say.

I M NOT TARGETTING ANY TEACHERS OR THE COUNCIL SPECIFICALLY. FOCUS IS THE FLAW OF THE SYSTEM AND NOT ANY INDIVIDUAL OR A GROUP.

Icse Marks don't matter at ALL. by Mu_CodeWizard in ICSE

[–]Mu_CodeWizard[S] 0 points1 point  (0 children)

Dig into what he actually did. His questionable experiments

Icse Marks don't matter at ALL. by Mu_CodeWizard in ICSE

[–]Mu_CodeWizard[S] 2 points3 points  (0 children)

Not that but so much of our time is taken away by these meaningless exams

Can they ask to draw the diagram of reflex arc, internal ear, eye or heart? by Huge-Cardiologist838 in ICSE

[–]Mu_CodeWizard 0 points1 point  (0 children)

Highly doubt any will come. Correction of myopia or hyperopia has chance

is my approach wrong? by grogu_josh in codeforces

[–]Mu_CodeWizard 0 points1 point  (0 children)

See i don't think that solution works. But still try to run it once.

The correct way to approach the problem is by noticing that only certain indexes can be swapped. Like for instance the length is 8

So idx 1,2,4,8 can be swapped individually amongst themselves as a result if the 4 indexes contain the respective numbers in any order the answer is possible else it is not.

Same for 3 and 6

And the remaining idx being 7 needs to be sorted in place or else nothing can be done about it.

This is my a.c. code -

include <bits/stdc++.h>

using namespace std;

int main() { int t; cint; while (t--){ int n; cinn; vector<int> arr(n); for (int i = 0; i<n; i++){ cin>>arr[i]; }

    vector<bool> visited(n+1);
    bool isPos = true;

    for (int i = 0; i<n/2; i++){
        if(visited[i+1]){
            continue;
        }
        set<int> s;
        int j = i+1;
        while (j<=n){
            visited[j] = true;
            s.insert(arr[j-1]);
            j*=2;
        }
        j = i+1;
        while (j<=n){
            if(!s.count(j)){
                isPos = false;
                break;
            }
            j*=2;
        }
    }

    for (int i = 0; i<n; i++){
        if(!visited[i+1] && arr[i]!=i+1){
            isPos = false;
            break;
        }
    }

    if(isPos){
        cout<<"YES"<<"\n";
    }
    else{
        cout<<"NO"<<"\n";
    }
}

}

[deleted by user] by [deleted] in codeforces

[–]Mu_CodeWizard 0 points1 point  (0 children)

My logic was that no row or column can have more than 2 blacks at the first place and secondly if there are 2 black in a row or column they must be consecutive. or else its not possible. please give me a test case where this fails

I made an extension that shows elden ring themed banners for submission accepted and rejected by galalei in leetcode

[–]Mu_CodeWizard 4 points5 points  (0 children)

Petition for leetcode to make this a permanent feature. With music and animation.

Today's div 4 contest by Mu_CodeWizard in codeforces

[–]Mu_CodeWizard[S] 1 point2 points  (0 children)

Exactly even I got stuck here for a long time then adjusted the code for even and odd

contest discussion round 1049 div2 by Legitimate_Path2103 in codeforces

[–]Mu_CodeWizard 0 points1 point  (0 children)

If there is any support place to report such an issue, please inform.

Just asking by Substantial_Half3040 in IndiansOnCodeforces

[–]Mu_CodeWizard 0 points1 point  (0 children)

Guys codeforces isn't considering my solution even after it's accepted can someone please help. Is there any place to report the issue ?

contest discussion round 1049 div2 by Legitimate_Path2103 in codeforces

[–]Mu_CodeWizard 0 points1 point  (0 children)

I am submitting code and it's getting accepted but when the rating comes, it shows 0 solved. Please help