Code Monkey home page Code Monkey logo

programming-practice's Introduction

Hello I'm Shubham Verma ๐Ÿ‘‹

  • ๐Ÿ”ญ Iโ€™m currently working on Problem Solving Skills and Algorithms
  • ๐ŸŒฑ Iโ€™m currently learning Springboot, Kafka ๐Ÿคฃ
  • ๐Ÿ’ฌ Ask me about C++, Java, PHP, Python, Git and Algorithms
  • โšก Interested in contribute more to Open Source projects

programming-practice's People

Contributors

1tsak avatar aanchalsharmaa1024 avatar abhi7717 avatar aishika3 avatar avinashdhakne avatar ayush-geek avatar chinmaydas96 avatar chinmayeeb96 avatar dhanashrisonawane28 avatar f-carraro avatar guranshdeol avatar imdarshansingh avatar kunal-khairnar-05 avatar labiiiii avatar laveshverma007 avatar matchasage avatar nova-007 avatar nupoor10 avatar prasanta10 avatar prashantpadhy avatar rt0602 avatar sahilsr20 avatar sampaddey avatar saurabhsingh76 avatar shaheervk786 avatar shubhamecb avatar shubhamlmp avatar shubhranshii avatar ya332 avatar yogeshkumar-1234 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

programming-practice's Issues

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

1. Welcome for you with Condition
2. Multiples
3. Max and Min
4. Capital or Small or Digit

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file
66 Replace MinMax
67 Check Code
69 Minimize Number
70 Count Subarrays

Add optimized solution for the problems in C++

  1. Add optimized solution for the problems in C++.
  2. Add comment and explain each and every line.
  3. Variable name should be meaningful and in camelCase like FooBar,FooBarTest.
  4. Add solution link in readme file with C++ language category in solution section.
  5. Your Code must be pretty formated.
  6. Have a good commit message.

Add optimized solution for the problems in Javascript

  1. Add optimized solution for the problems in Javascript.
  2. Add comment and explain each and every line.
  3. Variable name should be meaningful and in camelCase like FooBar,FooBarTest.
  4. Add solution link in readme file with Javascript language category in solution section.
  5. Your Code must be pretty formated.
  6. Have a good commit message.

implement beginner project in Javascript

Any project will be accepted which will follow the below instructions.

  1. we are not expecting any large project, small project is Okay.
  2. Any beginner level project will be accepted.
  3. project will be implemented in Javascript language.

Rules related to PR:

  • create new directory (folder) with your project name that include below details.
  • code with well explained with comments
  • add instructions in documentation how someone run that project.
  • add output of your project

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

22 Comparison
23 Mathematical Expression
24 Two intervals
25 The last 2 digits

Add optimized solution for the problems in C

  1. Add optimized solution for the problems in C.
  2. Add comment and explain each and every line.
  3. Variable name should be meaningful and in camelCase like FooBar,FooBarTest.
  4. Add solution link in readme file with C language category in solution section.
  5. Your Code must be pretty formated.
  6. Have a good commit message.

add projects which will help to beginners

Any project will be accepted which will follow the below instructions.

  1. we are not expecting any large project.
  2. Any beginner level project will be accepted.
  3. project will be implemented in any language.

Rules related to PR:

  • create new directory (folder) with your project name that include below details.
  • code with well explained with comments
  • add instructions in documentation how someone run that project.
  • add output of your project

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file
75 | Frequency Array
76 | Mirror Array
77 | 8 Neighbors
78 | Range sum query

Summation

`
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

int main() {

//To read No of elements in array

int N;
cin>>N;


ll arr[N];


ll sum=0;

//Reading Array Elements
for(int i=0;i<N;i++)
    cin>>arr[i];


// Findig Sum of Elements
for(int i=0;i<N;i++)
{

    sum+=arr[i];

}

//abs(num) return positive value of that num
cout<<abs(sum)<<"\n";



return 0;

}`

implement beginner project in C++

Any project will be accepted which will follow the below instructions.

  1. we are not expecting any large project small project is Okay.
  2. Any beginner level project will be accepted.
  3. project will be implemented in C++ language.

Rules related to PR:

  • create new directory (folder) with your project name that include below details.
  • code with well explained with comments
  • add instructions in documentation how someone run that project.
  • add output of your project

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

62 Smallest Pair
63 Lucky Array
64 Sum2
65 Max Subarray

solution needed for below problems in C++

Add solution for these problems and add their solution links under solution section in readme file
09 Smallest Pair
10 Lucky Array
11 Sum2
12 Max Subarray
13 Replace MinMax
14 Check Code

Add optimized solution for the problems in your favorite programming language

  1. Add optimized solution for the problems in your favorite programming language.
  2. Add comment and explain each and every line.
  3. Variable name should be meaningful and in camelCase like FooBar,FooBarTest.
  4. Add solution link in readme file with language category in solution section like C, C++, Java, Javascript, Python.
  5. Your Code must be pretty formated.
  6. Have a good commit message.

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

26 Hard Compare
39 GCD
40 Lucky Numbers
41 Numbers Histogram

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file
1. Age in Days
2. Interval
3. Sort Numbers
4. Float or int

Add optimized solution for the problems in Python

  1. Add optimized solution for the problems in Python.
  2. Add comment and explain each and every line.
  3. Variable name should be meaningful and in camelCase like FooBar,FooBarTest.
  4. Add solution link in readme file with Python language category in solution section.
  5. Your Code must be pretty formated.
  6. Have a good commit message.

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file
71 | Permutation with arrays
72 | Search In Matrix
73 | Matrix
74 | Is B a subsequence of A ?
ย 

add solution for these problems in C++

Add solution for these problems in their specific directory and add their solution links under solution section in readme file

47 | Shape2
48 | Some Sums
49 | PUM
50 | Shape3

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

51 | Convert To Decimal 2
52 | Easy Fibonacci
53 | Three Numbers
56 | Replacement

implement beginner project in python

Any project will be accepted which will follow the below instructions.

  1. we are not expecting any large project small project is Okay.
  2. Any beginner level project will be accepted.
  3. project will be implemented in python language.

Rules related to PR:

  • create new directory (folder) with your project name that include below details.
  • code with well explained with comments
  • add instructions in documentation how someone run that project.
  • add output of your project

solution needed for below problems in C++

Add solution for these problems and add their solution links under solution section in readme file
16 Minimize Number
17 Count Subarrays
18 Permutation with arrays
19 Search In Matrix
20 Matrix
21 Is B a subsequence of A ?

implement beginner project in C

Any project will be accepted which will follow the below instructions.

  1. we are not expecting any large project small project is Okay.
  2. Any beginner level project will be accepted.
  3. project will be implemented in C language.

Rules related to PR:

  • create new directory (folder) with your project name that include below details.
  • code with well explained with comments
  • add instructions in documentation how someone run that project.
  • add output of your project

Correct table format in readme file

correct the table format in readme file for correct format check Data Type & Conditions format.

  1. Add counting for quesions
  2. remove extra \ from rows

solution needed for below problems in C++

Add solution for these problems and add their solution links under solution section in readme file
11 I Love strings
12 String Functions
13 Subsequence String
14 Max Subsequence

Question numbers in Readme can be made better

Instead of implementing an overall count, you can choose to have a sectional serial number.
This would enable new contributors and add the question in the readme.md directly and won't have to change all the question numbers ahead of it.

Add optimized solution for the problems in Java

  1. Add optimized solution for the problems in Java.
  2. Add comment and explain each and every line.
  3. Variable name should be meaningful and in camelCase like FooBar,FooBarTest.
  4. Add solution link in readme file with Java language category in solution section.
  5. Your Code must be pretty formated.
  6. Have a good commit message.

solution needed for below problems in C++

Add solution for these problems and add their solution links under solution section in readme file
15 Sort String
16 Count Words
17 Reverse Words
18 String Score

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

1. Char
2. Calculator
3. First digit !
4. Coordinates of a Point

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file

43 | Shape1
44 | Digits
45 | Sequence of Numbers and Sum
46 | Sum of Consecutive Odd Numbers

Correct table format in readme file

correct the table format in readme file for correct format check Data Type & Conditions format.

  1. Add counting for quesions under #
  2. Add problem name under under title section and add problem link for each problem

add solution for these problems in C++

Add solution for these problems and add their solution links under solution section in readme file
1. Simple Calculator
2. Area of a Circle
3. Digits Summation ย 
4. Summation from 1 to N

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.