Ecosyste.ms: Issues
An open API service for providing issue and pull request metadata for open source projects.
GitHub / next-step-for-interview-prep/full-dsa-course_code_and_notes issues and pull requests
#44 - Put underlined copy of competitive programmer book and other competitive programming resources in this repo
Issue -
State: closed - Opened by SartHak-0-Sach 8 months ago
#43 - Add underlined version of book to respective repos
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#42 - Add leetcode explore cards notes and cheatsheets or make a separate repo for the same for best topic-wise questions
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#41 - int init = [] { ios_base::sync_with_stdio(false); cin.tie(nullptr); ofstream out("user.out"); for (string s; getline(cin, s);) out<<(equal(s.begin()+1, s.begin()+s.size()/2, s.rbegin() + 1) ? "true\n" : "false\n"); out.flush(); exit(0); return 0; }(); Add meaning of this code too
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#40 - Add screenshots of mcq questions and notes to relevant lectures notes file from coding ninjas guided path for DSA and competitive programming
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#39 - Add explanation of #pragma GCC optimize("O3", "unroll-loops") at the start of the program and auto init = []() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); return 'c'; }(); at the end of the program, this code is present in daily question feb 29th
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#38 - Add explanation of #pragma GCC optimize("O3", "unroll-loops")
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#37 - Write code for flipping 2D array horizontally vertically in 3D diagonally, rotating in any direction any number of times clockwise anticlockwise, finding transpose, finding inverse if possible, finding co-factors etc all in one menu driven program
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#36 - Redo lec-23
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#35 - Watch lec-22 again and also add code provided by love babbar in lecture for all questions
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#34 - Check all string functions by calling them in main in lec-22
Issue -
State: closed - Opened by SartHak-0-Sach 11 months ago
#33 - Add more algorithms from book or other resources mentioned in lec-24 notes
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#32 - Add complexity calculation of famous algorithms like sieve of erathosneses in lec-24 and so on
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#31 - Add this code to lec-11 regarding how its doing good at space complexity- class Solution { public: bool isSameTree(TreeNode* p, TreeNode* q) { if(!p && !q) return true; if(!p || !q) return false; return p->val==q->val && isSameTree(p->left, q->left) && isSameTree(p->right, q->right); } };
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#30 - Add non-common commands also for existing STLs in lec-19
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#29 - Add competitive programming STL data structures and their notes too in lec-19
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#28 - Rewrite all lec-15 code on your own
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#27 - Add binary search question solution written on SPOJ website mentioned in lec-15
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#26 - Write notes on implementation of STL and algorithm header files members in lec-19
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#25 - Debug why book allocation problem code is not working by using custom testcases
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#24 - add info about how to initialize the size and all values of a 2d vector to 2d array lecture
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#22 - Add book allocation problem explanation in your own words with approach explanation, code line by line explanation and testcase explanation(dry run)
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#20 - In operators lecture, add info about >>= and <<= and their difference from usual right and left shift operators
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#19 - Read about how to write custom functions for sorting all datatypes that are already allowed or not using sort function and also read about its implementation
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#17 - In lec-14, add the implementation of sqrt function where user can mention the number of decimal digits as the argument
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#16 - Find the other 2 approach to solve the search rotated array question at 28:23 and write them in lec-14 code
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#14 - Add more info about ios::sync_with_stdio(0); cin.tie(0); code in lec-2
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#13 - Add code to solve bug in tree diameter problem for edge case where both points are on same side of tree
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#12 - Make separate repository for playing soduku, tic tac toe, number shifting game, snake game from lec-23 and write all code on your own
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#11 - In lec-11, make a database of all topic problems and their constraints
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#10 - Write notes about extra STL mentioned in lec-19 in video that were not discussed there
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#9 - From approach written in finishing leetcode repository, add the notes of all the algorithms names used in this repository in relevant lectures
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#8 - Review lec-10 code and lecture and add notes about various algorithms and ways discussed
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#7 - Add code of sorting problem in lec-10 with 5 methods mentioned
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#6 - In lecture-10 problems add the code for finding the subarray of any size that sums upto required target sum
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#5 - Add bonus lectures links in notes files
Issue -
State: closed - Opened by SartHak-0-Sach 12 months ago
#4 - Do the coin greedy problem using switch case
Issue -
State: closed - Opened by SartHak-0-Sach almost 1 year ago
#3 - Make a menu driven program for calculator
Issue -
State: closed - Opened by SartHak-0-Sach almost 1 year ago
#2 - Make calculator class in c++ that takes unclean string expression and returns solution and works infinitely until break
Issue -
State: closed - Opened by SartHak-0-Sach almost 1 year ago
#1 - Master
Pull Request -
State: closed - Opened by SartHak-0-Sach about 1 year ago