Code Monkey home page Code Monkey logo

devaffan / afficodes-hacktoberfest2023 Goto Github PK

View Code? Open in Web Editor NEW
5.0 5.0 25.0 1.32 MB

Some usefull Algorithms and Codes to help beginners. You will find multiple different languages Algorithms and ideas here and also some beginners Mini Projects.

PHP 73.49% JavaScript 2.03% Python 0.24% C++ 2.09% Java 0.07% HTML 0.60% CSS 20.78% Kotlin 0.01% Swift 0.02% Objective-C 0.01% Dart 0.21% TypeScript 0.42% Hack 0.06%
algorithms c cpp first-issue hack hacktober hacktoberfest hacktoberfest2023 java javascript mini-project miniprogram open-source php python

afficodes-hacktoberfest2023's Introduction

@affan_ali's Holopin board

Hi ๐Ÿ‘‹, I'm Affan Ali

Full Stack Web Developer

devaffan

  • ๐Ÿ”ญ Iโ€™m currently working on Test Driven Development

  • ๐ŸŒฑ Iโ€™m currently learning Advanced plugin Development, MERN Stack, TDD

  • ๐Ÿ’ฌ Ask me about Core PHP, Laravel, Plugins Development, Addons, React, TDD, APIs

  • ๐Ÿ“ซ How to reach me [email protected]

  • ๐Ÿ“„ Know about my experiences -> I currently work as a Full Stack Developer at GenetechSolutions, primarily focusing on product development and research within the GETLab (Genetech Emerging Tech Lab). My role involves handling and developing products and exploring advanced technologies and coding approaches.

โš™๏ธ Connect with Me:

devaffan affan-ali affi346i affanali577

โš™๏ธ Languages and Tools:

bootstrap codeigniter css3 docker firebase git html5 javascript kubernetes laravel linux mysql oracle php react sass tailwind


โš™๏ธ GitHub Analytics

Affan's GitHub streak

Affan's GitHub Contribution

Affan's Github Stats Al Siam's Top Languages

afficodes-hacktoberfest2023's People

Contributors

48cfu avatar ahmedrazaabbasi avatar ajay2827 avatar anasaliw avatar anoshkhan avatar asifurrahmanpial avatar ayush91985 avatar bhaveshgarg2000 avatar chaitanya-2804 avatar code4oryou avatar devaffan avatar divyaraj-gohil avatar dollykumari9798 avatar harshdev625 avatar lolzone13 avatar natwargopal avatar romaaji avatar sameer-472 avatar sandeepanm2003 avatar shivam250702 avatar soraakash avatar sudo-jarvis avatar swastik2703 avatar ujjwall-r avatar uthpalsuvarna avatar vaishnavi-sangal avatar varunsharma6956 avatar vedika-m avatar wasibhussain avatar ykodwani01 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

afficodes-hacktoberfest2023's Issues

Make this C++ code much better to understand(Binary search).

#include
using namespace std;
int binarysearch(int *a, int n, int x)
{
// Intialize start as the start point
// end as the end of an array
// Mid variable to be search in an array.
int start = 0;
int end = n - 1;
int mid;
while (end >= start)
{
mid = (start + end) / 2;
if (a[mid] == x)
{
return mid;
}
else if (a[mid] > x)
{
end = mid - 1;
}
else
{
start = mid + 1;
}
}
return -1;
}
int main()
{
// Input the size of an array.
int n;
cin >> n;
//created a Dynamic Array.
int *a = new int[n];
for (int i = 0; i < n; i++)
{
cin >> a[i];
}
// Input the number to search in an array.
int x;
cin >> x;
cout << binarysearch(a, n, x);
delete[] a;
}

Contribute in C++

Contribute to C++ and make some changes or write documentation to make it more useful for beginners.

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.