I don't know why I haven't discovered this channel yet... You're a gem.
@arsenruslanovich66422 жыл бұрын
Great, thank you FIBONACHI MAMA MIA
@cypher75362 жыл бұрын
Saw many videos on matrix exponentiation but this was the best... 🔥🔥
@pragneshamadavadi22675 ай бұрын
thanks for making matrix exponentiation very easy 🔥🔥
@armaan8969 Жыл бұрын
Thanks di ,I was struggling here from a long time..Ur explaination was legit..Cleared the concept 🤩🤩
@AmanSharma-vb5jl2 жыл бұрын
you are a magician
@joe02122 жыл бұрын
Great 👍
@meandpenguinvlogs82213 жыл бұрын
Amazing
@k.abhijeet2 жыл бұрын
Great explanation!
@HassanFathi2002 Жыл бұрын
great
@omnnnooy3267 Жыл бұрын
thank you so much!
@AJ-xc3ks8 ай бұрын
Thanks a log dii❤
@ChandanKumar-xd1tg2 жыл бұрын
Super explain
@puliashreeth11692 жыл бұрын
good explanation😉
@Alonkete7 ай бұрын
I luv u alisha❤
@shivangyadav58872 жыл бұрын
Base case n==-1 can be removed i think beco'z base case 0 is written first
@harsh-govind Жыл бұрын
Best Time Complexity | Iterative | log(n) #define m 1000000007 vector matMul(vector &a, vector &b) { vector ans = {{0, 0}, {0, 0}}; for(int i=0; i
@pawfulpurrr2 жыл бұрын
Thank u akka
@mohammadyasir6297 Жыл бұрын
Can anyone explain this line vectorans(2,vector(2,0));
@NareshKumar-p1b2u Жыл бұрын
@harsh-govind I have written the same solution in java but got the wrong result. For instance, n =4 got result as 9. Please correct the solution. public class SumOfNFibonnaci { public int[][] sum(int[][] mat, int nNumber) { if(nNumber == 1) return mat; int[][] tempM = sum(mat, nNumber/2); if(nNumber%2 == 0) return matMultiply(tempM, tempM); else return matMultiply(tempM, matMultiply(tempM,mat)); } public int[][] matMultiply(int[][] mA, int[][] mB){ int[][] mM = {{1, 1},{1,0}}; for(int i =0; i < 2; i++) { for(int j =0; j < 2; j++) { for(int k =0; k < 2; k++) { mM[i][j] += (mA[i][k]*mB[j][k])%1000000009; } } } return mM; } public static void main(String[] args) { // TODO Auto-generated method stub int n= 4; //1,1,2,3 int[][] mat = {{1, 1},{1,0}}; SumOfNFibonnaci sumOfNFibonnaci = new SumOfNFibonnaci(); int[][] res = sumOfNFibonnaci.sum(mat, n); System.out.println("res: "+ res[0][1]%1000000009); } }
@SinghSurjeet-wq4eg5 ай бұрын
I don't know why people said its a good explanation but I know this is worst explanation and just wasted my 22 minutes on this I am sorry to say but your speed is 1.5 x