Skip to content
View SajidK25's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report SajidK25

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
SajidK25/README.md

GitHub Twitter LinkedIn Twitter

Pinned

  1. k8_phpmysql k8_phpmysql Public

    PHP

  2. calculator calculator Public

    Demo Spring boot project for pipeline

    Java

  3. Insertion sort [ Ascending and desce... Insertion sort [ Ascending and descending ] Implementation using Dart programming language
    1
    void insertionSort_asc(var L){
    2
      int n=L.length;
    3
      for(var i=1;i<n;i++){
    4
        var item=L[i];
    5
        var j=i-1;
  4. Selection Sort Implementation using ... Selection Sort Implementation using Dart Programming Language
    1
    void selectionSort(var L) {
    2
      var n = L.length;
    3
      for (var i = 0; i < n - 1; i++) {
    4
        var index_min = i;
    5
        for (var j = i + 1; j < n; j++) {
  5. Bubble Sort Implementation using Dar... Bubble Sort Implementation using Dart Programming Language
    1
    void bubbleSort(var L) {
    2
      var n = L.length;
    3
      for (var i = 0; i < n; i++) {
    4
        for (var j = 0; j < n - i - 1; j++) {
    5
          if (L[j] > L[j + 1]) {
  6. Binary Search Implementation using D... Binary Search Implementation using Dart programming language
    1
    int binarySearch(L,left,right,x){
    2
      if(left>right){
    3
        return -1;
    4
      }
    5
      int mid=(left+right)~/2;