├── 29-3-2023 └── RoundTrip.cpp ├── Batch-2 └── 29-3-2023(Graph) │ ├── Live Class │ ├── 1.py │ └── oop revision │ │ ├── 0_index.txt │ │ ├── 1_single_inheritance.py │ │ ├── 2_heirarchical_inheritance.py │ │ ├── 3_multiple_inheritanec.py │ │ ├── 4_multilevel_inheritane.py │ │ ├── 5_hybrid_inheritance.py │ │ ├── 6_encaptualtion.py │ │ ├── 7_polymorphism.py │ │ └── 8_abstraction.py │ └── RoundTrip.cpp ├── Batch-3 ├── 17-4-2023(Array) │ ├── 0_1_Doc_Link.txt │ ├── 0_Outline.txt │ ├── 1_Introduction.c │ ├── 2_Array_Input_Output.c │ ├── 3_Insertion.c │ ├── 4_deletion.c │ ├── 5_Ex_Sum_Update.c │ └── 6_Ex_2_Swap.c ├── Algorithm │ ├── Week-1-1 31-07-2023 Complexity Analysis │ │ └── 0_index.txt │ ├── Week-1-1 31-07-2023 DFS │ │ ├── 0_index.txt │ │ └── 0_main.cpp │ ├── Week-3-1 14-8-2023 Dijkstra │ │ ├── 0_index.txt │ │ └── 1_dijkstra.cpp │ ├── Week-4-1 21-8-2023 Problem Solving │ │ ├── 1_AsFarFromLand_LeetCode.cpp │ │ └── 2_CountSubIsland_LeetCode.cpp │ ├── Week-5-1 29-8-2023 DisJoint Set Union │ │ └── 1_main.cpp │ ├── Week-6-1 29-8-2023 Dp Introduction │ │ ├── 0_index.txt │ │ ├── 1_cimbStairs.cpp │ │ ├── 2_fibo.cpp │ │ └── 3_CSES_Removing_Digits.cpp │ └── Week-7-1 11-09-2023 LCS + Problem Solving │ │ ├── 0_index.txt │ │ ├── 1_top_down.cpp │ │ ├── 2_bottom_up.cpp │ │ ├── 3_problem_solving_memoization.cpp │ │ └── 4_3_problem_solving_tabulation.cpp ├── C++ │ ├── Week-1 22-5-2023 (DMA+Pointer) │ │ ├── 1_Introduction.cpp │ │ ├── 2_Pointer.cpp │ │ ├── 3_hack.c │ │ ├── 4_DM_declraration.cpp │ │ ├── 5_DM_array_size_increase.cpp │ │ └── 6_return_array_from_funciton.cpp │ └── Week-2 29-5-2023 (String) │ │ ├── 0_doc_link.txt │ │ ├── 1_P_Count_Words_Customize.cpp │ │ ├── 2_P_Count_Words.cpp │ │ ├── 3_Reverse_Words.cpp │ │ └── 4_V_Replace_Word.cpp ├── DS │ ├── Week-1-1 06-6-2023 Time Complexity │ │ ├── 1.cpp │ │ └── G_Summation_from_1_to_N.cpp │ ├── Week-2-1 12-06-2023 Singly Liked List │ │ ├── 1_index.cpp │ │ ├── 2_create_node.cpp │ │ ├── 3_insertion.cpp │ │ └── 4_deletion.cpp │ ├── Week-3-1 19-06-2023 Doubly Liked List │ │ ├── 0_index.txt │ │ └── 1_main.cpp │ ├── Week-4-1 07-03-2023 stack and queue │ │ ├── 0_index.txt │ │ ├── 1_MinStack.cpp │ │ ├── 2_backSpaceStirngCompare.cpp │ │ └── 3_Circular_Game.cpp │ ├── Week-5-1 07-03-2023 Tree │ │ ├── 0_index.txt │ │ ├── 1_build_print_manualcpp │ │ ├── 2_build_pirnt_dynamic.cpp │ │ └── 3_calculate_operation.cpp │ ├── Week-6-1 17-7-2023 BST │ │ ├── 0_index.txt │ │ └── 1_main.cpp │ ├── Week-6-2 19-7-2023 Heap │ │ ├── 0_index.txt │ │ ├── 1_main.cpp │ │ └── 2_heap_sort.cpp │ └── index.txt ├── Database │ ├── LIVE_CLASS │ │ └── FULL_DB_OVERVIEW.sql │ ├── LIVE_CLASS_DB_OVERVIEW.sql │ ├── Week-2 10-09-2023 Problem Solving │ │ └── 0_main.cpp │ ├── Week-3 Phitron DB Project │ │ ├── 1_ddl.sql │ │ ├── 2_main.py │ │ └── 3_fectch.py │ ├── Week-3-1 11-03-23 Database Design + Some operations │ │ ├── 1_main.sql │ │ └── 2_alter_operatios.sql │ ├── Week-3-2 04-11-2023 │ │ ├── 1_create_db.py │ │ └── 2_main.py │ └── Week-3-3 Live Project │ │ ├── main.py │ │ └── main.sql ├── Django │ ├── Week 1-1 13-11-2023 │ │ ├── 0_index.txt │ │ └── project │ │ │ ├── images │ │ │ ├── asif.png │ │ │ ├── blogs │ │ │ │ ├── blog-1.png │ │ │ │ ├── blog-2.png │ │ │ │ ├── blog-3.png │ │ │ │ ├── blog-4.png │ │ │ │ ├── blog-5.png │ │ │ │ ├── blog-6.png │ │ │ │ └── blog-7.png │ │ │ ├── courses │ │ │ │ ├── course-1.png │ │ │ │ ├── course-2.png │ │ │ │ └── course-3.png │ │ │ ├── dream-bg.png │ │ │ ├── exp-bg.png │ │ │ ├── icons │ │ │ │ ├── clock.png │ │ │ │ ├── logo.png │ │ │ │ ├── profile.png │ │ │ │ └── star.png │ │ │ ├── my-bg.png │ │ │ ├── my-bg2.jpg │ │ │ ├── my-bg2.png │ │ │ ├── players │ │ │ │ ├── player-1.png │ │ │ │ ├── player-2.png │ │ │ │ ├── player-3.png │ │ │ │ ├── player-4.png │ │ │ │ ├── player-5.png │ │ │ │ └── player-6.png │ │ │ └── top-banner.png │ │ │ ├── index.html │ │ │ └── style.css │ ├── Week 2-1 4-12-2023 │ │ ├── 0_index.txt │ │ └── project │ │ │ ├── db.sqlite3 │ │ │ ├── login │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── admin.cpython-311.pyc │ │ │ │ ├── apps.cpython-311.pyc │ │ │ │ ├── django_form.cpython-311.pyc │ │ │ │ ├── models.cpython-311.pyc │ │ │ │ ├── urls.cpython-311.pyc │ │ │ │ └── views.cpython-311.pyc │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── django_form.py │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-311.pyc │ │ │ ├── models.py │ │ │ ├── static │ │ │ │ └── upload │ │ │ │ │ ├── profile-picture.jpeg │ │ │ │ │ ├── t12.png │ │ │ │ │ └── t14.png │ │ │ ├── templates │ │ │ │ ├── django_form.html │ │ │ │ ├── login_form.html │ │ │ │ └── login_home.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ │ ├── manage.py │ │ │ ├── project │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ ├── settings.cpython-311.pyc │ │ │ │ ├── urls.cpython-311.pyc │ │ │ │ └── wsgi.cpython-311.pyc │ │ │ ├── asgi.py │ │ │ ├── settings.py │ │ │ ├── urls.py │ │ │ └── wsgi.py │ │ │ └── templates │ │ │ └── base.html │ └── Week 4-1 18-12-2023 │ │ ├── 0_index.txt │ │ └── book-store │ │ ├── book │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── admin.cpython-311.pyc │ │ │ ├── admin.cpython-39.pyc │ │ │ ├── apps.cpython-311.pyc │ │ │ ├── apps.cpython-39.pyc │ │ │ ├── forms.cpython-311.pyc │ │ │ ├── forms.cpython-39.pyc │ │ │ ├── models.cpython-311.pyc │ │ │ ├── models.cpython-39.pyc │ │ │ ├── urls.cpython-311.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── views.cpython-311.pyc │ │ │ └── views.cpython-39.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_bookstoremodel_last_pub.py │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ ├── 0001_initial.cpython-311.pyc │ │ │ │ ├── 0001_initial.cpython-39.pyc │ │ │ │ ├── 0002_alter_bookstoremodel_last_pub.cpython-311.pyc │ │ │ │ ├── 0002_alter_bookstoremodel_last_pub.cpython-39.pyc │ │ │ │ ├── __init__.cpython-311.pyc │ │ │ │ └── __init__.cpython-39.pyc │ │ ├── models.py │ │ ├── templates │ │ │ ├── base.html │ │ │ ├── book_details.html │ │ │ ├── delete_confirmation.html │ │ │ ├── home.html │ │ │ ├── show_book.html │ │ │ ├── store_book.html │ │ │ └── superuser.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ │ ├── book_store │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── settings.cpython-311.pyc │ │ │ ├── settings.cpython-39.pyc │ │ │ ├── urls.cpython-311.pyc │ │ │ ├── urls.cpython-39.pyc │ │ │ ├── wsgi.cpython-311.pyc │ │ │ └── wsgi.cpython-39.pyc │ │ ├── asgi.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ ├── db.sqlite3 │ │ └── manage.py ├── Python │ ├── Week-1-1 25-09-2023 Basic Python │ │ ├── 0_index.txt │ │ ├── 1_str.py │ │ ├── 2_lst.py │ │ ├── 3_tpl.py │ │ ├── 4_set.py │ │ └── 5_dct.py │ ├── Week-2-1 2-10-2023 OOP Python │ │ ├── 0_index.txt │ │ ├── 10__isA_hasA_Relationship.py │ │ ├── 1_Single_Inheritance.py │ │ ├── 2_Multiple_Inheritance.py │ │ ├── 3_MultiLevel_Inheritance.py │ │ ├── 4_Hierachical_Inhertance.py │ │ ├── 5_Hybrid_Inheritance.py │ │ ├── 6_Encaptulation_Public.py │ │ ├── 7_Encaptulation_Private.py │ │ ├── 8_Polymorphism_CompileTime.py │ │ ├── 9_A_Abstraction.py │ │ └── 9_Polymorphism_Runtime.py │ └── Week-3-1 10-10-2023 Ride Sharing Project │ │ ├── 0_index.txt │ │ └── 1_main.cpp ├── Week-4 02-5-2023(Function) │ ├── 1_index.txt │ ├── 2_Introdunciton.c │ ├── 3_Return_Argumnt.c │ ├── 4_No_Return_Argumnt.c │ ├── 5_Return_No_Argumnt.c │ ├── 6_No_Return_No_Argumnt.c │ └── 7_Problem_Solving.c └── Week-5 08-5-2023 (Recursion) │ ├── 0 DocLink.txt │ ├── A_Print_Recursion.c │ ├── B_Print_from_1_to_N.c │ ├── C_Print_from_N_to_1.c │ ├── D_Array_Input_Output.c │ ├── E_Array_Input_Output.c │ ├── L_Summation.c │ └── test.c ├── C ├── 0_index.txt ├── 1_function.c ├── 2_pointer.c └── 3_structure.c ├── Training Session └── OOP │ └── Baics │ ├── 0_index.txt │ ├── 1_single_inheritance.py │ ├── 2_hierarchical_inheritance.py │ ├── 3_multiple_inheritance.py │ ├── 4_multilevel_inheritance.py │ ├── 5_hybrid_inheritance.py │ ├── 6_encaptualtion.py │ ├── 7_polymorphism.py │ ├── 8_abstraction.py │ └── test.txt └── linked list ├── 0_index.txt ├── 1_create_node.cpp ├── 2_constructor_node.cpp ├── 3_dynamic_node.cpp ├── 4_dynamic_constructor_node.cpp ├── 5_user_input.cpp └── test.cpp /29-3-2023/RoundTrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/29-3-2023/RoundTrip.cpp -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/1.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/0_index.txt -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/1_single_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/1_single_inheritance.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/2_heirarchical_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/2_heirarchical_inheritance.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/3_multiple_inheritanec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/3_multiple_inheritanec.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/4_multilevel_inheritane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/4_multilevel_inheritane.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/5_hybrid_inheritance.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/6_encaptualtion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/6_encaptualtion.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/7_polymorphism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/7_polymorphism.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/Live Class/oop revision/8_abstraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/Live Class/oop revision/8_abstraction.py -------------------------------------------------------------------------------- /Batch-2/29-3-2023(Graph)/RoundTrip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-2/29-3-2023(Graph)/RoundTrip.cpp -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/0_1_Doc_Link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/0_1_Doc_Link.txt -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/0_Outline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/0_Outline.txt -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/1_Introduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/1_Introduction.c -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/2_Array_Input_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/2_Array_Input_Output.c -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/3_Insertion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/3_Insertion.c -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/4_deletion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/4_deletion.c -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/5_Ex_Sum_Update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/5_Ex_Sum_Update.c -------------------------------------------------------------------------------- /Batch-3/17-4-2023(Array)/6_Ex_2_Swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/17-4-2023(Array)/6_Ex_2_Swap.c -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-1-1 31-07-2023 Complexity Analysis/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-1-1 31-07-2023 Complexity Analysis/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-1-1 31-07-2023 DFS/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-1-1 31-07-2023 DFS/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-1-1 31-07-2023 DFS/0_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-1-1 31-07-2023 DFS/0_main.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-3-1 14-8-2023 Dijkstra/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-3-1 14-8-2023 Dijkstra/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-3-1 14-8-2023 Dijkstra/1_dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-3-1 14-8-2023 Dijkstra/1_dijkstra.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-4-1 21-8-2023 Problem Solving/1_AsFarFromLand_LeetCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-4-1 21-8-2023 Problem Solving/1_AsFarFromLand_LeetCode.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-4-1 21-8-2023 Problem Solving/2_CountSubIsland_LeetCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-4-1 21-8-2023 Problem Solving/2_CountSubIsland_LeetCode.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-5-1 29-8-2023 DisJoint Set Union/1_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-5-1 29-8-2023 DisJoint Set Union/1_main.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/1_cimbStairs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/1_cimbStairs.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/2_fibo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/2_fibo.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/3_CSES_Removing_Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-6-1 29-8-2023 Dp Introduction/3_CSES_Removing_Digits.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/1_top_down.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/1_top_down.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/2_bottom_up.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/2_bottom_up.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/3_problem_solving_memoization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/3_problem_solving_memoization.cpp -------------------------------------------------------------------------------- /Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/4_3_problem_solving_tabulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Algorithm/Week-7-1 11-09-2023 LCS + Problem Solving/4_3_problem_solving_tabulation.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/1_Introduction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/1_Introduction.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/2_Pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/2_Pointer.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/3_hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/3_hack.c -------------------------------------------------------------------------------- /Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/4_DM_declraration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/4_DM_declraration.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/5_DM_array_size_increase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/5_DM_array_size_increase.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/6_return_array_from_funciton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-1 22-5-2023 (DMA+Pointer)/6_return_array_from_funciton.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-2 29-5-2023 (String)/0_doc_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-2 29-5-2023 (String)/0_doc_link.txt -------------------------------------------------------------------------------- /Batch-3/C++/Week-2 29-5-2023 (String)/1_P_Count_Words_Customize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-2 29-5-2023 (String)/1_P_Count_Words_Customize.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-2 29-5-2023 (String)/2_P_Count_Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-2 29-5-2023 (String)/2_P_Count_Words.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-2 29-5-2023 (String)/3_Reverse_Words.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-2 29-5-2023 (String)/3_Reverse_Words.cpp -------------------------------------------------------------------------------- /Batch-3/C++/Week-2 29-5-2023 (String)/4_V_Replace_Word.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/C++/Week-2 29-5-2023 (String)/4_V_Replace_Word.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-1-1 06-6-2023 Time Complexity/1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-1-1 06-6-2023 Time Complexity/1.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-1-1 06-6-2023 Time Complexity/G_Summation_from_1_to_N.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-1-1 06-6-2023 Time Complexity/G_Summation_from_1_to_N.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/1_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/1_index.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/2_create_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/2_create_node.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/3_insertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/3_insertion.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/4_deletion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-2-1 12-06-2023 Singly Liked List/4_deletion.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-3-1 19-06-2023 Doubly Liked List/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-3-1 19-06-2023 Doubly Liked List/0_index.txt -------------------------------------------------------------------------------- /Batch-3/DS/Week-3-1 19-06-2023 Doubly Liked List/1_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-3-1 19-06-2023 Doubly Liked List/1_main.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-4-1 07-03-2023 stack and queue/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-4-1 07-03-2023 stack and queue/0_index.txt -------------------------------------------------------------------------------- /Batch-3/DS/Week-4-1 07-03-2023 stack and queue/1_MinStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-4-1 07-03-2023 stack and queue/1_MinStack.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-4-1 07-03-2023 stack and queue/2_backSpaceStirngCompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-4-1 07-03-2023 stack and queue/2_backSpaceStirngCompare.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-4-1 07-03-2023 stack and queue/3_Circular_Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-4-1 07-03-2023 stack and queue/3_Circular_Game.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-5-1 07-03-2023 Tree/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-5-1 07-03-2023 Tree/0_index.txt -------------------------------------------------------------------------------- /Batch-3/DS/Week-5-1 07-03-2023 Tree/1_build_print_manualcpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-5-1 07-03-2023 Tree/1_build_print_manualcpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-5-1 07-03-2023 Tree/2_build_pirnt_dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-5-1 07-03-2023 Tree/2_build_pirnt_dynamic.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-5-1 07-03-2023 Tree/3_calculate_operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-5-1 07-03-2023 Tree/3_calculate_operation.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-6-1 17-7-2023 BST/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-6-1 17-7-2023 BST/0_index.txt -------------------------------------------------------------------------------- /Batch-3/DS/Week-6-1 17-7-2023 BST/1_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-6-1 17-7-2023 BST/1_main.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-6-2 19-7-2023 Heap/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-6-2 19-7-2023 Heap/0_index.txt -------------------------------------------------------------------------------- /Batch-3/DS/Week-6-2 19-7-2023 Heap/1_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-6-2 19-7-2023 Heap/1_main.cpp -------------------------------------------------------------------------------- /Batch-3/DS/Week-6-2 19-7-2023 Heap/2_heap_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/DS/Week-6-2 19-7-2023 Heap/2_heap_sort.cpp -------------------------------------------------------------------------------- /Batch-3/DS/index.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Batch-3/Database/LIVE_CLASS/FULL_DB_OVERVIEW.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/LIVE_CLASS/FULL_DB_OVERVIEW.sql -------------------------------------------------------------------------------- /Batch-3/Database/LIVE_CLASS_DB_OVERVIEW.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/LIVE_CLASS_DB_OVERVIEW.sql -------------------------------------------------------------------------------- /Batch-3/Database/Week-2 10-09-2023 Problem Solving/0_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-2 10-09-2023 Problem Solving/0_main.cpp -------------------------------------------------------------------------------- /Batch-3/Database/Week-3 Phitron DB Project/1_ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3 Phitron DB Project/1_ddl.sql -------------------------------------------------------------------------------- /Batch-3/Database/Week-3 Phitron DB Project/2_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3 Phitron DB Project/2_main.py -------------------------------------------------------------------------------- /Batch-3/Database/Week-3 Phitron DB Project/3_fectch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3 Phitron DB Project/3_fectch.py -------------------------------------------------------------------------------- /Batch-3/Database/Week-3-1 11-03-23 Database Design + Some operations/1_main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3-1 11-03-23 Database Design + Some operations/1_main.sql -------------------------------------------------------------------------------- /Batch-3/Database/Week-3-1 11-03-23 Database Design + Some operations/2_alter_operatios.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3-1 11-03-23 Database Design + Some operations/2_alter_operatios.sql -------------------------------------------------------------------------------- /Batch-3/Database/Week-3-2 04-11-2023/1_create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3-2 04-11-2023/1_create_db.py -------------------------------------------------------------------------------- /Batch-3/Database/Week-3-2 04-11-2023/2_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3-2 04-11-2023/2_main.py -------------------------------------------------------------------------------- /Batch-3/Database/Week-3-3 Live Project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3-3 Live Project/main.py -------------------------------------------------------------------------------- /Batch-3/Database/Week-3-3 Live Project/main.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Database/Week-3-3 Live Project/main.sql -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/0_index.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/asif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/asif.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-1.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-2.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-3.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-4.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-5.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-6.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/blogs/blog-7.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/courses/course-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/courses/course-1.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/courses/course-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/courses/course-2.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/courses/course-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/courses/course-3.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/dream-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/dream-bg.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/exp-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/exp-bg.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/clock.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/logo.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/profile.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/icons/star.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/my-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/my-bg.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/my-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/my-bg2.jpg -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/my-bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/my-bg2.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-1.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-2.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-3.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-4.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-5.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/players/player-6.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/images/top-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/images/top-banner.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/index.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 1-1 13-11-2023/project/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 1-1 13-11-2023/project/style.css -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/0_index.txt: -------------------------------------------------------------------------------- 1 | week-02 2 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/django_form.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/django_form.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/apps.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/django_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/django_form.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/models.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/static/upload/profile-picture.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/static/upload/profile-picture.jpeg -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/static/upload/t12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/static/upload/t12.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/static/upload/t14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/static/upload/t14.png -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/templates/django_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/templates/django_form.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/templates/login_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/templates/login_form.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/templates/login_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/templates/login_home.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/tests.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/urls.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/login/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/login/views.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/manage.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/asgi.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/settings.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/urls.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/project/wsgi.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 2-1 4-12-2023/project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 2-1 4-12-2023/project/templates/base.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/0_index.txt: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/forms.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/forms.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/admin.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/apps.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/forms.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/0001_initial.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/0002_alter_bookstoremodel_last_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/0002_alter_bookstoremodel_last_pub.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0001_initial.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0001_initial.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0002_alter_bookstoremodel_last_pub.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0002_alter_bookstoremodel_last_pub.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0002_alter_bookstoremodel_last_pub.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/0002_alter_bookstoremodel_last_pub.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/models.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/base.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/book_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/book_details.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/delete_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/delete_confirmation.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/home.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/show_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/show_book.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/store_book.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/store_book.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/superuser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/templates/superuser.html -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/tests.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/urls.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book/views.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/asgi.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/settings.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/urls.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/book_store/wsgi.py -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/db.sqlite3 -------------------------------------------------------------------------------- /Batch-3/Django/Week 4-1 18-12-2023/book-store/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Django/Week 4-1 18-12-2023/book-store/manage.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-1-1 25-09-2023 Basic Python/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-1-1 25-09-2023 Basic Python/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Python/Week-1-1 25-09-2023 Basic Python/1_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-1-1 25-09-2023 Basic Python/1_str.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-1-1 25-09-2023 Basic Python/2_lst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-1-1 25-09-2023 Basic Python/2_lst.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-1-1 25-09-2023 Basic Python/3_tpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-1-1 25-09-2023 Basic Python/3_tpl.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-1-1 25-09-2023 Basic Python/4_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-1-1 25-09-2023 Basic Python/4_set.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-1-1 25-09-2023 Basic Python/5_dct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-1-1 25-09-2023 Basic Python/5_dct.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/10__isA_hasA_Relationship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/10__isA_hasA_Relationship.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/1_Single_Inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/1_Single_Inheritance.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/2_Multiple_Inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/2_Multiple_Inheritance.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/3_MultiLevel_Inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/3_MultiLevel_Inheritance.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/4_Hierachical_Inhertance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/4_Hierachical_Inhertance.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/5_Hybrid_Inheritance.py: -------------------------------------------------------------------------------- 1 | #explore youreself -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/6_Encaptulation_Public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/6_Encaptulation_Public.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/7_Encaptulation_Private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/7_Encaptulation_Private.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/8_Polymorphism_CompileTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/8_Polymorphism_CompileTime.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/9_A_Abstraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/9_A_Abstraction.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-2-1 2-10-2023 OOP Python/9_Polymorphism_Runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-2-1 2-10-2023 OOP Python/9_Polymorphism_Runtime.py -------------------------------------------------------------------------------- /Batch-3/Python/Week-3-1 10-10-2023 Ride Sharing Project/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-3-1 10-10-2023 Ride Sharing Project/0_index.txt -------------------------------------------------------------------------------- /Batch-3/Python/Week-3-1 10-10-2023 Ride Sharing Project/1_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Python/Week-3-1 10-10-2023 Ride Sharing Project/1_main.cpp -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/1_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/1_index.txt -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/2_Introdunciton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/2_Introdunciton.c -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/3_Return_Argumnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/3_Return_Argumnt.c -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/4_No_Return_Argumnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/4_No_Return_Argumnt.c -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/5_Return_No_Argumnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/5_Return_No_Argumnt.c -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/6_No_Return_No_Argumnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/6_No_Return_No_Argumnt.c -------------------------------------------------------------------------------- /Batch-3/Week-4 02-5-2023(Function)/7_Problem_Solving.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-4 02-5-2023(Function)/7_Problem_Solving.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/0 DocLink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/0 DocLink.txt -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/A_Print_Recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/A_Print_Recursion.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/B_Print_from_1_to_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/B_Print_from_1_to_N.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/C_Print_from_N_to_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/C_Print_from_N_to_1.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/D_Array_Input_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/D_Array_Input_Output.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/E_Array_Input_Output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/E_Array_Input_Output.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/L_Summation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Batch-3/Week-5 08-5-2023 (Recursion)/L_Summation.c -------------------------------------------------------------------------------- /Batch-3/Week-5 08-5-2023 (Recursion)/test.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C/0_index.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /C/1_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/C/1_function.c -------------------------------------------------------------------------------- /C/2_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/C/2_pointer.c -------------------------------------------------------------------------------- /C/3_structure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/C/3_structure.c -------------------------------------------------------------------------------- /Training Session/OOP/Baics/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/0_index.txt -------------------------------------------------------------------------------- /Training Session/OOP/Baics/1_single_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/1_single_inheritance.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/2_hierarchical_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/2_hierarchical_inheritance.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/3_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/3_multiple_inheritance.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/4_multilevel_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/4_multilevel_inheritance.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/5_hybrid_inheritance.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Training Session/OOP/Baics/6_encaptualtion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/6_encaptualtion.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/7_polymorphism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/7_polymorphism.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/8_abstraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/Training Session/OOP/Baics/8_abstraction.py -------------------------------------------------------------------------------- /Training Session/OOP/Baics/test.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /linked list/0_index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/0_index.txt -------------------------------------------------------------------------------- /linked list/1_create_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/1_create_node.cpp -------------------------------------------------------------------------------- /linked list/2_constructor_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/2_constructor_node.cpp -------------------------------------------------------------------------------- /linked list/3_dynamic_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/3_dynamic_node.cpp -------------------------------------------------------------------------------- /linked list/4_dynamic_constructor_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/4_dynamic_constructor_node.cpp -------------------------------------------------------------------------------- /linked list/5_user_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/5_user_input.cpp -------------------------------------------------------------------------------- /linked list/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsifMohammedSifat/Conceptual-Session/HEAD/linked list/test.cpp --------------------------------------------------------------------------------