Let's march ahead, and create an unmatchable DSA course! ❤ Do consider to give us a like, and a subscribe, means a world to us..
@giit85 Жыл бұрын
❤️
@bhanupratapsharma6158 Жыл бұрын
competitive programming content plz sir how to reach candidate master i was stucked on specialist
@tuhindas9777 Жыл бұрын
Thank you dada love from Kolkata
@23cash86 Жыл бұрын
STL next?
@techyouknow8026 Жыл бұрын
Happy new Year , Please Sir upload all the basics lecture within 2 months as I trust you so I can request you please upload frequency maintain , I like all your video after watching it completely, also you are helping others to achieve their new year resolution.
@sachinboreoffl Жыл бұрын
Tip: When you're printing spaces in a pattern, replace the space with any other symbol like this "-", it helps in understanding what we are doing.
@RahulChacko Жыл бұрын
❤
@jaydeeppatil7936 Жыл бұрын
Thanks a lot it really helped me
@anusha6033 Жыл бұрын
nice one thanks for sharing
@suryasaipalthi Жыл бұрын
thanks for sharing that did change my way of thinking somewhat
@harshyadav121410 ай бұрын
very good approach
@sumitapathak2900 Жыл бұрын
I was losing confidence in my DSA skills after being away for so long. This video sharpened my thinking as well as brought back that confidence. Thanks a lot !!
@FRACTALUMAR4 ай бұрын
did you solve them by your own or first watched ,then, practice them ....
@vahramirpunit2 ай бұрын
@@FRACTALUMAR i first watched whole video once, then i solved most of the problems on my own, if needed i came back to video.
In Pattern18, we should not hardcode the value 'E', It should be dynamic. void pattern_18(int n) { for (int i=0; i
@Hades02105 ай бұрын
Exactly
@ictfan-ly8gh3 ай бұрын
Yes bro u are 👍
@ictfan-ly8gh3 ай бұрын
He could have use Char ch= 64+n
@kartikgtm72 ай бұрын
its wrong bro...The correct solution is.... for(int i=0;i
@ImaamJIJ2 ай бұрын
we can use this for coding ninjas practice for (int i = 1; i ='A'+(n-i); ch--) { System.out.print(ch+" "); } System.out.println(); }
@md.ualiurrahmanrahat2400 Жыл бұрын
saw a lot of videos before to understand pattern 22. But never got it. The way you solved it!!! What can I say. We owe you big time brother.
@eleveneleven4195 Жыл бұрын
for code 14 we can also try :🙂 for(int i=1;i
@dllychoudhary75867 ай бұрын
I literally did the same... because there was error that character can not add with int..so i did with your method
@honourable88166 ай бұрын
@@dllychoudhary7586 You can use cout
@TiyaBhatt4-de8sq6 ай бұрын
@@dllychoudhary7586 I am facing the same error in question 16 . What should I do?
@yashiktaneja6735 ай бұрын
@@TiyaBhatt4-de8sq char ch='A'; for(int i=1; i
@raavanan007926 ай бұрын
Thanks for the great content ❤ @tip for the pattern 18 the logic in the video is hardcoded for 'E' letter alone . Kindly utilize the below solution. void alphaTriangle(int n) { for(int i=0;i
@HarshDPatil12310 күн бұрын
i think your code does opposite . E E D E D C E D C B E D C B A
@HarshDPatil12310 күн бұрын
maybe letter = 'A + n-i-1
@chiragPatel22c Жыл бұрын
last pattern is mind blowing!!! hard to get that logic at first sight.
@dhruvdonsahu9972Ай бұрын
i am still confused
@debashmansarbadhikari6196 Жыл бұрын
For pattern number 12 we could also have done the following : int space = 2 * ( n - i )...ofcourse this variable would have to be defined within the scope of the outer loop. Besides, the problem given on the sheet and the problem redirected to by the link are actually slightly different. Here's the code snippet for solving the problem redirected to by the link : void printTriangle(int n) { for(int i = 1; i
@abhisheksantoshbhambe76179 ай бұрын
thanks dude!! i thought y im not getting it, and u coreected me
@nisha1841 Жыл бұрын
Bhaiya learning DSA from your AtoZ sheet . i am in final year I can't thank you enough for bring light in my dark future..when everyone is saying that "tumse an ho payega "I finally decided that "ab mujhse hi ho payega" thank you bhaiya .and please agle 3 month take intermediate level ka DSA sikha do.
@AryanKumar-qj9ud Жыл бұрын
Same stry wish the best
@uniquescience7047 Жыл бұрын
All the best to you😁
@known878 Жыл бұрын
Bhai tumne bola ki 3 month takk intermediate DSA sikha do aur tumhare comment ke bhi 3 months ho gaye to sikh liye kya intermediate wala?
@nisha1841 Жыл бұрын
@@known878 ha bhai intermediate level ka almost complete hai . Strive ki AtoZ sheet se padha hai maine usme se question bnao shi rhega
@prajjwal5520 Жыл бұрын
placement lg gyi?
@SurabBarve20 күн бұрын
for 7th pattern if you use the formula j
@samuelfernandes330110 ай бұрын
striver i think you made a little mistake in pattern18 your considering j as E, but the start letter depends on number of rows, therefore the code will work for more test cases void pattern18(int n){ for (int i = 1; i
@ankushhv6972 Жыл бұрын
Hey Striver, i think for the pattern 18, we should not directly start from 'E', I think according to pattern we should be starting form ('A' + n - i + 1) until ('A' + n), for(int i = 0; i < n; i++) { for(char ch = 'A' + (n - i - 1); ch < 'A' + n; ch++) { cout
@shaharslan3372 Жыл бұрын
Yes, Ankush I also noticed this. Using this approach makes it dynamic for all inputs of 'n'. Good Job
@nehathakur40 Жыл бұрын
you are an inspiration for programming faternity! loved the way you teach. The ease with which you have taught recursion and dp is commendable. i get to learn every day from you. Thank you for being light in lives of programmers.
@raunak276 Жыл бұрын
fr
@sainaid Жыл бұрын
no doubt striver bhaiya has made this playlist the best way.
@Cvx_ishere Жыл бұрын
Literally, breaking whole concepts into 3 steps really really help me as beginner to understand patterns. Thankyou striver b :)
@soubhikghosh6564 Жыл бұрын
It doesnot come interviews i agree. But still i would urge all to do this exercise... It will help all Software engineers or aspirants to improve their problem solving skills by seeing patterns
@priyankabhagoriya27620 күн бұрын
Hmare clg m placement m ye pattern hi puche the bs 3 logo se bne the bs phle ye dekh liya hota to syd mera bhi placement ho jata but ab practice kr rhi hu
@HarshDPatil12310 күн бұрын
@@priyankabhagoriya276 did you get placement ? off campus?
@sasmitsirroco4 ай бұрын
For pattern 7, why print spaces after astrix? Simply cout
@mehtabmultani3194 Жыл бұрын
39:22 tip for pattern 11: if the sum of every single (row+column) is 'even' then have to print 1 else 0 if((i + j) % 2 === 0) print(1) else print(0)
@satyam-seth8 ай бұрын
void printPattern(int n) { for (int i = 0; i < n; i++) { for (int j = 0; j
@012srishtisaini75 ай бұрын
@@satyam-seth thankss.. i was having a bad time because of this
@abhisheksahu3453Ай бұрын
for pattern 15 even more simpler code : void printPattern(int n) { int i; for(i=0;i
@sabashh8208 Жыл бұрын
For pattern18 if we don't want to hardcode 'E' and use it for other row numbers then we can make small change as char initial = (char) ('A'+ (n-1)); for (int i = 0; i < n; i++) { for (char c = (char) (initial - i); c
@NikitaNair Жыл бұрын
I was looking for this!!!
@anishchhabra608510 ай бұрын
Python code for the same: for i in range(n): char = 65 for j in range(i+1): print(chr((n-i-1)+char),end="") char += 1 print(' ',end="")
@ritusingh86166 ай бұрын
Thank you for this content! This video helped a lot! Kindly correct the code for pattern 18 to adapt to different values of input... void print18(int n){ for(int i=1; i
@tusharkumar7963 Жыл бұрын
The best video on solving patterns on KZbin! Can't thank you enough!!!😀😀
@PrabhjotSingh-o4s4 ай бұрын
If You Start From Loop from 0 the formula will be lil bit easier helps more to understand for a beginner 23:18 For Printing ***** **** *** ** * for(int i=0;i
@Manish-wk8ni Жыл бұрын
Thank You, we are all hooked up. This is gonna be a Great Series.
@prathameshdhanajigandule42997 ай бұрын
The better and correct code for pattern no.18 1:01:00 would be : void pattern18(int n){ for(int i = 0 ; i < n ; i++){ for(int j = i ; j >= 0 ; j--) cout
@keisergg87017 ай бұрын
yep! I did same as you, here is my java code if anyone cares public static void pattern18(int n) { for (int i = 0; i < n; i++) { char ch = 'A'; char chs = (char)(ch + (n-i-1)); for(int j=0; j
@prathameshdhanajigandule42997 ай бұрын
@@keisergg8701 Yes bro it's correct I care
@vikasverma56855 ай бұрын
@@keisergg8701 public static void pattern18(int n){ for(int i = 0; i < n; i++){ for(char ch = (char)('E'- i); ch
@shaharslan3372 Жыл бұрын
Edited : Saw you correct it in the next question :-D For pattern 19 , I don't think we should hard code the number of spaces as 8 and then keep on decreasing the number by 2 with each iteration , as it will only work for input n = 5. Rather there should be a general formula : for(int i = n ; i >=1; i--){ for(int j =1; j
@AdityaVerma-hh1ox Жыл бұрын
This is wrong bro
@SpewFactsBeTrueToYourselves2 ай бұрын
i did pattern 19 myself by running 6 for loops and without seeing strivers explanation based on previous patterns knowledge , it took me 2 hrs to first draw it on book and break it into smaller chunks and then write code, row number is the game changer in second half rhombus
@vidhveshchangalasetty5 ай бұрын
18th pattern We should define a const char starting alphabet of each line by taking the char ch='A'+n-i (before starting the outer for loop) void alphaTriangle(int n) { char ch = 'A' + n - 1; for (int i = 0; i < n; i++) { for (char c = ch; c >= ch - i; c--) { cout
@hasanuzzamananuz8270 Жыл бұрын
More than the premium course I have learned a lot. The lecture delivery, explanation, and expression are great, and that makes me concentrate more to watch the video. I have done all the problems on my own using your 4 pattern-solving rules. Hats off sir ❤❤❤❤❤❤❤❤❤❤
@zenmonk295 ай бұрын
today i lost my phone. it was 19 days old. went to police station to file a report, the inspector had the same name as you
@hasanuzzamananuz82704 ай бұрын
@@zenmonk29 So what, Multiple people have under the same name.
@damolaOnikoyi5 ай бұрын
Thank you Striver, preciate ya!!. I just completed all the pattern problems. The last one was quite tricky as I did not quickly understand your solution. However, I have provided my solution below for others that might find it helpful and maybe easier to understand. Intuition: Fill the 2D array (named result) with the values (n, n-1, n-2 ...) then just simply print it out (row x column)👍🏾. You can fill the result array like this : 1. Outer loop fills the layer (A layer is a square ring of numbers). 2. Get the number to be filled per layer => int num = n - layer. Hence if n = 3, layer = 0 (first one) -> n , n - 1, n - 2 ... so we print 3, 2, & 1 per square ring. 3. Middle loop iterates over the rows of the current layer. 4. Inner loop iterates over the columns of the current layer. static void pattern22() { int size = 2 * n - 1; int[][] result = new int[size][size]; for (int layer = 0; layer < n; ++layer) { int num = n - layer; for (int i = layer; i < size - layer; ++i) { for (int j = layer; j < size - layer; ++j) { result[i][j] = num; } } } for (int[] row : result) { for (int col : row) { System.out.print(col + " "); } System.out.println(); } }
@ramfattah211 Жыл бұрын
The last pattern took me some time but I just figured it out and i'm so happy 🧠🤯. Such a great feeling😊. Thank you Striver for this amazing content.
@keerthanasathish368410 ай бұрын
Alternate code for pattern 5 has runtime 17ms void seeding(int n) { for(int i=0;i
@neoteric_nk Жыл бұрын
Nice explanation sir! Just wanna give a general code for Pattern 18. void pattern18(int n){ char ch= 'A'+n-1; for(int i=0; i
@Seraexplores5 ай бұрын
Pattern 19 simpler: def pattern19(n): for i in range(1, 2*n + 1): stars = n-i+1 if i > n: stars = i-n spaces = 2*n - 2*stars for j in range(stars): print("*", end="") for k in range(spaces): print(" ", end="") for j in range(stars): print("*", end="") print()
@gunasekarb31005 ай бұрын
whoever found the logic for the pattern 22 must be an alien.
@winter_hope_5 ай бұрын
🤣
@LUchiha-dt6xv4 ай бұрын
I did found the logic myself(different but same answer though) but the logic used here is damn crazy🥲
@gunasekarb31004 ай бұрын
@@LUchiha-dt6xv did you use spiral way?
@LUchiha-dt6xv4 ай бұрын
@@gunasekarb3100 Idk about that😅, but divided the whole patter into 4 parts & designed the parts & framed them one by one(basically the brute force approach u could say)
@abhishekpattanayak14433 ай бұрын
@@LUchiha-dt6xv you can also try using chebyshev distance for each (i,j) from the middle-most index
@nexxerjm348 Жыл бұрын
Patter seventeen :@58:53 Solution is very Here is approach first print space then print ascending order charcater till i Then print descending order till i-1 First loop for space: j=1 to j
@shuskane Жыл бұрын
UNDERSTOOD 👍 👍👍 👍👍👍 👍👍👍👍 👍👍👍👍👍
@kshitijsingh19902 ай бұрын
haha smart!
@Apheta_aАй бұрын
let n=5 for (let i=0;i
@udaykumar-jj1gwАй бұрын
@@Apheta_a 😂 😂😂 😂😂😂 😂😂😂😂 😂😂😂😂😂
@icodecrush28 күн бұрын
39:39 Pattern11 Could be done using different logic. // Outer loop = rows/Lines for (int i = 0; i < n; i++) { // innerloop = Collumns for (int j = 0; j
@spdks3485 Жыл бұрын
HAPPY NEW YEAR SIR HAVE A GREAT YEAR AHEAD AND WE ARE VERY GLAD TO GET THE HELPING PERSON LIKE YOU FOR BEGINERS LIKE US.
@anil-chaturvedi Жыл бұрын
Thank you for this logic-building lecture. I'm feeling confident about pattern questions.
@sphereofcalmness24889 күн бұрын
The best video on how to code patterns. Step-2 is GOLD!
@lekhanachidananda Жыл бұрын
Thank you Striver! I really love your videos. Small suggestion: you could have calculated time and space complexity for all the patterns.
@sathvikvutukuri9179 Жыл бұрын
I think most of them took O(n^2)
@frekkytanish2 ай бұрын
for pattern 16 : int n; cin>>n; for(char ch = 'A' ; ch < 'A'+ n ; ch++ ){ for(int cha = 'A' ; cha
@detaqwer Жыл бұрын
Hey Raj, for pattern 11 we can try this code as well which is simpler void print11(int n) { for (int i = 1; i
@chethanprabhu4475 Жыл бұрын
Can simplify even further void print11(int n) { for (int i = 1; i
@blockyquasar5 ай бұрын
@@sagarshah5341 kaise bhai? same hi hai dono me, n square hai dono me
@sagarshah53415 ай бұрын
@@blockyquasar I do not remember why I said that!
@shivendradwivedi88875 ай бұрын
In pattern 20 , for stars and spaces we can do this way also int stars = i; int spaces = 2*n - 2*i; if(i > n){ stars = 2*n - i; space = 2*i - 2*n; }
@mrnonsenseju Жыл бұрын
New exciting videos in new year... Thanks Striver Bhaiya.... Love from Jalpaiguri
@karthikeyabollu7121 Жыл бұрын
pattern 20 is same as pattern 19 but just interchanging the spaces and stars variables. that means no.of stars in pattern 20 will be same as no.of spaces in pattern 19 and vice-versa.
@takeUforward Жыл бұрын
Good observation
@itz-aksh8 ай бұрын
pattern 19: we can also combine both upper and inner part by declaring variables for conditions and so avoid writing loops for 3 more times.. void print19(int n){ for(int i=1;in/2){ conditionstar=i-n/2; conditionspace=2*(n-i); } else{conditionstar=n/2-i+1; conditionspace=2*i-2;} for(int stars1=0;stars1
@UECHarshaVardhanRavipalli Жыл бұрын
Done these all max by my own... feels confident enough to go ahead!! TQ Bhai!!😇
@preethamreddy96109 күн бұрын
Understood. Today is November 18th, 2024, i have started my journey with Strivers SDE sheet, i will come here periodically to update my status and my offers! Wish me luck!
@4444-c4s Жыл бұрын
A little catch for Pattern-7. Don't need to print last spaces. Just 2 inner for loops will work.
@konstantinossimatos346659 минут бұрын
31:00 void printX(int row, int col){ for(int i = 0; i < row; i++) { for(int j = 0; j < col; j++) { if(i+j
@Narasimha-ms2up Жыл бұрын
Really amazing teaching after listening 8th to 11th pattern , without any error i do 12th by my own❤❤❤
@PriyankaKumari-cm3kq3 ай бұрын
Problem no. 18 code- void alphaTriangle(int n) { for(int i=0;i
@KeepCoding69 Жыл бұрын
Better solution for Pattern no.12 (using only 2 for loop) : #include using namespace std; int main() { int n = 9; int start = 1; int end = n*2; int temp; for (int row = 1; row
@BALAJITVECstudent4 күн бұрын
for pattern 7 i have tried with two inputs and using conditional statements it works well with the input of n=5 and m=9 The logic of the code is for (int i = 1; i
@sukhpreetsingh5200 Жыл бұрын
Revision done😄
@mr.batman23484 ай бұрын
hello paji koi dc ya linkedin profile wagera
@mahirshah7633 ай бұрын
In Pattern 22, if someone is coding in c language, there is no min() function so it can be written like this by creating a function: #include int minimum(int a,int b, int c, int d); int main() { int num=4; int n=2*num-1; for(int i=0;i
@nithin999jw21 күн бұрын
you can simply edit
@luckshaeey Жыл бұрын
last pattern was awesome. I followed another method and figured out some another pattern and symmetricity in it. But your approach was very informative too.
@darkexodus6404 Жыл бұрын
Same. From outermost square to the innermost square. I did it like this.
@Jaishreeram-ly2jm2 ай бұрын
can u share your method?
@sheetaljain35694 күн бұрын
For the 11th Pattern, I thought if both column and row are of the same type(i.e. (even, even) and (odd, odd)) the sum of the row will be even, then we have to print 1 and when are different the sum is going to be odd. So, I tried it in a different way. Here's my approach: for(int i=0;i
@cinime Жыл бұрын
Understood! Super amazing explanation as always, thank you very much!!
@ChetanRajput-ju2sd5 ай бұрын
problem 22 - For Python: I found below approach most optimised. If u observe (row wise): 1st half and 2nd half is a mirror (ignore middle for a while.) 1st half of a row is a combination of two parts: a - fix part b - decremental part for eg , for n = 6 (considering just 1st half of a row) row1 : 666666 -> all fix , no decremental row2 : 655555 -> 6- decremental , 55555 - fix row3 : 654444 -> 65 - dec , 4444 - fix row4 : 654333 -> 654 - dec , 333 - fix derive the code for dec and fix , then combine the string to generate 1st part of a row , then neglet last character and reverse the result , concatenate both original and reverse to get full row. time difference (n = 500 ) 1. n - min() approach : 256ms 2. above approach : 54 ms
@Tyler_Durden.9998 ай бұрын
Is anyone doing it using Java?
@xihadityajaiswal87977 ай бұрын
Me
@harikrishnapatel75146 ай бұрын
yes
@shaunakmajumdar52786 ай бұрын
Ofc
@vikrant36406 ай бұрын
Ofc😊
@ProgramerRaj6 ай бұрын
Yeah bro
@sanjanakumari98415 күн бұрын
for question no. 18, hard coded value is written JavaScript solution - function printPattern(n) { for (let i = 1; i < n+1; i++) { let row = ""; for (let j = 1; j < i+1; j++) { row += String.fromCharCode(65 + (n - j)) + " "; } console.log(row.trim()); } } printPattern(5); python soln - def alphaTriangle(n: int): for i in range (1, n+1): for j in range(1, i+1): print(chr(65 + (n-j)), end = ' ') print() pass
@k-gos Жыл бұрын
What will be the frequency of lectures and will you teach the complete DSA in this course? Also what will be the tentative duration of this course? Great lec btw
Source code ? I have learned Star space star patterns with your trick ❤️🔥. It would be better if you normalize and use loop from 0 or 1 for every problem :) cheers !!!
@aseemsharma4643 Жыл бұрын
For pattern 7: if the spaces conditions seems difficult, there is a simpler way to reverse loop for spaces and have forward loop for star, given that forward loop will be running (i*2) times. For eg: outer loop: for (int i = 0; i < rows; i++) for (int j = rows; j > i; j--) -> 1st Spaces for (int k = 0; k Stars for (int j = rows; j > i; j--) -> 2nd Spaces. Note: rows can be any input.
@tgxgaming58808 ай бұрын
31:00 What if we don't print the last space ? Like, After the stars. Does it improve TC(Time Complexity)?
@BoraSaiVenkataPraveenKumar5 күн бұрын
Understood. A very clear explanation on understanding the patterns and clear approach on printing the patterns.
@rishav144 Жыл бұрын
one of the best videos 🔥
@GauravThinks Жыл бұрын
bhai poori to dekh le pehle
@yikes3807 Жыл бұрын
@@GauravThinks xd
@SoumeshRanger111 Жыл бұрын
Thank you for the video, If possible could you please share the tasks.json file here, i.e. how you're writing to the output file simultaneously.😊😊
@mintobit7 ай бұрын
As an alternative solution for pattern #22: every number equals to the distance from center + 1. private static void numberPattern(int n) { for (int i = -n+1; i < n; i++) { for (int j = -n+1; j < n; j++) { System.out.print(1 + Math.max(Math.abs(i), Math.abs(j))); } System.out.print(" "); } }
@Yash_Raj_J Жыл бұрын
If possible can you tell us another method for pattern 22? I did not understand. BTW THANKS A LOT BHAIYA
@BhuvaneswariSura10 ай бұрын
import java.util.*; class Pattern { public static void main(String args[]) { int n=7; int c=((n+1)/2); for(int i=0;i
@jayeshb93238 ай бұрын
Absolutely loved the video..the way you explained it made it very easy to understand complicated problems
@yogeshverma7366 Жыл бұрын
Hey Striver, for the pattern 18, I guess the code will not work for n > 5, it will start printing characters lesser than 'A'.
@varunsde95339 ай бұрын
to make it as per any value of n, make the following changes: char ch = (char)((int)'A'+n-i-1); for(int j=0;j
@kumaraditya55138 ай бұрын
A different yet similar approach to Pattern 11 (java) 39:22 int num = 1; for (int i=1; i
@graviton0014 ай бұрын
Pattern 5 my way of doing :- void print5(int n){ int a,b; for(a=1; a=a; b--){ cout
@Sagardeep_Das7 ай бұрын
For pattern 18 this can be tried too. It can print decreasing pattern for any no of alphabets (don't exceed n = 25 in input) void pattern18(int n) { int count = n; for(int i = 0; i
@programmingwallah29059 ай бұрын
One of the best man in coding community
@AdityaRBhagat4 күн бұрын
for pattern 18 we can use:: void pattern18(int n) { int i,j; for(i=1;i0;j--) { char start = 'A' + n -j; cout
You're answer for question 18 only gets correct answer when n is 5 because you hardcoded E into the for loop. The answer should be: void print18(int n){ for (int i=0;i
@samuelfernandes330110 ай бұрын
you can try this for pattern 12 here space is decreasing in multiple of 2. and the formula is 2*n - 2*i void pattern12(int n){ for(int i=1; i
@vandanpatel49057 ай бұрын
For pattern 8, we can also simply reverse the numbers in outer loop: for( int i=n; i>=1; i--){ for ( int j= 1; j
@krishnagarg25838 ай бұрын
for the 5th pattern you can also do for (int i = 1; i = i; j--) { cout
@silentsoul524 ай бұрын
problem no 18 can be solved by: for(int i=1;i
@HemasaicharanK3 ай бұрын
Thank you for your clear and concise explanation. I used to follow you for so long on LinkedIn, but didn't get a chance to watch your content. Now is the time for me to get prepared for a DSA interview.
@dhruvishah907716 күн бұрын
What I will suggest that after understanding how it works, the inner loop and outer loop, just go ahead and have a fun with that, first 3-4 are quite easy, and you just have to figure out the formula, the key point is you trying. Try with pencil and paper if normally you are not able to figure it out, your idea can be different, and this way you will learn a lot more than just straight up just watching this video. For an example, in pattern 11, we have to figure out the 1 and 0 ant even and odd place, I did it using i+j%2, if that's 0 then I noticed we have to print 1 otherwise print 0, then in question 2, instead of do minus 2 I just print 2 space, also as he mentioned you can also do k=n-1; k>0; k-- for space, decrement instead of increment, this way you will learn both. My point is just practice it by yourself, I am watching this video after completing all those pattern, I had issue with the last one, that's the only one I took help from GPT, after building my logic was not sure how to implement in java, and here after solving every question, I am watching how did he solve it, comparing my approach and see which one is performing better. So the point is, figure out your own way, learn these key 5 rules, but some pattern you have to figure out your own, you might come up with something smart, and that feeling is amazing. Happy Learning : ) You are not alone in this
@sunny-teaches-sometimes3 ай бұрын
For pattern 18, instead of assuming output always begins with char 'E', we could do this instead. Character A is 65 in ASCII, so the ending character at start would be => 65 + n -1 Since we are then decrementing the ending character at the start of every row => 65 + n - 1 - i While printing characters on a row's columns, we are incrementing the character to be printed => ord(rowStart) retrieves ASCII for the starting character for that row. ord(rowStart)+j retrieves the ASCII for the next character to be printed in that row chr(ord(rowStart)+j) retrieves the character for the respective ASCII Here's the python code for this pattern def pattern18(n): for i in range(n): rowStart = chr(65 + n - 1 - i) for j in range(i + 1): print(chr(ord(rowStart) + j), end='') print()
@NerdOverPhysics2 ай бұрын
for pattern 18 it will always start from 'E'. Instead, we can code this way better : void pattern18(int n){ char ch = 'A'+n; for(int i=0;i
@Dibyadipan4 ай бұрын
*corrected* java code for pattern 18: public class pattern_18{ public static void main(String[] args) { int n=5; int counter=0; for(int i=0;i
@SAGARROY-hs6lh Жыл бұрын
alphaTriangle (Pattern18) answer in cpp: void alphaTriangle(int n) { char ch = 'A' + n - 1; for (int i = 0; i < n; i++) { for (char c = char(ch); c >= (ch - i); c--) { cout
@riteshjat1086 ай бұрын
Pattern 18 Java : for(int i =0; i
@4444-c4s Жыл бұрын
I think most of the people teach by starting from i=0, which makes calculations and visualization a bit complicated..take it i=1, it will make thinking very simpler. For eg: In pattern 7 & 8: void p7(int n){ for(int i=1;i
@susmitha5g627 Жыл бұрын
Really happy to get it all for free! Thank you so much Striver!
@amansinghrajput183 ай бұрын
Understood..Great way of teaching
@yuuji-kun30615 ай бұрын
1:01:25 In Pattern18, we should not hardcode the value 'E', It should be dynamic. void pattern_18(int n) { for (int i=0; i
@mx5enthusiast5 ай бұрын
Exactly what I was thinking.
@aayushjain37313 ай бұрын
Pattern 11 can also be written using a matrix like concept under the inner loop if((i+j)%2 == 0) cout
@honourable88166 ай бұрын
here's my version of pattern 10, 11: void pattern10(short len){ if (len%2==0){ for (short i=1; i