Part5DataStructure

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ธ.ค. 2024

ความคิดเห็น • 210

  • @LearnCodeDesign
    @LearnCodeDesign 3 ปีที่แล้ว +11

    def moveNumber(nums, target):
    pos = 0
    for num in nums:
    if num != target:
    nums[pos] = num
    pos += 1
    for i in range(pos, len(nums)):
    nums[i] = target
    Time : O(n), Space O(1), In place movement by maintaining the relative order of elements.

  • @sheikhkevinbnujameskev7704
    @sheikhkevinbnujameskev7704 3 ปีที่แล้ว +5

    arr = [6,1,6,8,10,4,15,6,3,4,6]
    def ea(array,t):
    for i in range(0,len(array)):
    if array[i]==t:
    array.append(array[i])
    array.pop(i)
    print(array)
    ea(arr,6)
    Time complexity == O(n)
    Space complexity ==O(1)

  • @sankaranarayananp8407
    @sankaranarayananp8407 3 ปีที่แล้ว +13

    In C Programming,
    #include
    #include
    void main()
    {
    int size, i, j, target;
    int* arr;
    printf("Enter the size of an array: ");
    scanf("%d",&size);
    arr = (int*)calloc(size, sizeof(int));
    if(arr==NULL)
    {
    printf("Out of memory !!");
    }
    else
    {
    printf("Enter the elements: ");
    for(i=0; i

  • @fathimamp5477
    @fathimamp5477 หลายเดือนก่อน

    Chirichond enjoy cheyth padikkan pattiya oreyoru channel😊❤

  • @yadupk4595
    @yadupk4595 3 ปีที่แล้ว +52

    ഇത്രേം നാടൻ ഭാഷയിൽ വേറെ എവിടെ ക്ലാസ് കിട്ടും

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +6

      അതില്ല! അതാണ് crossroads pever 🔥

  • @rishikesh2757
    @rishikesh2757 3 ปีที่แล้ว +9

    Shaheen nice programming + comedy aanallo.njan parayenda kaaryamilla but full crossroads team poli aanu.

  • @faisalerakottil675
    @faisalerakottil675 7 หลายเดือนก่อน +3

    answer of the last Question in Dart
    List moveFivesToEnd(List arr) {
    List nonFives = [];
    List fives = [];
    for (int element in arr) {
    if (element == 5) {
    fives.add(element);
    } else {
    nonFives.add(element);
    }
    }
    return nonFives.followedBy(fives).toList();
    }
    void main() {
    List arr = [1, 2, 5, 3, 5, 2, 6, 5, 7, 8, 5];
    List modifiedArr = moveFivesToEnd(arr);
    print(modifiedArr);
    }

  • @jelanmathewjames2579
    @jelanmathewjames2579 2 ปีที่แล้ว +3

    solution with O(n)T and O(1)S
    using j and i variables. for loop decrement
    # function
    def arrayproblems(array,target):
    # i and j variables having position of last element
    i = j = len(array)-1
    for i in range(i,-1,-1):
    # checking all elements
    if array[i]== target:
    array[i],array[j] = array[j],array[i]
    j -= 1
    array = [1,2,3,1,2,4,2,3,5,3,2,5,3,5,3,1,6,4,5,4,3,1,6,5,4,3,1,5]
    target = 3
    print("Given Array:",array)
    print("Given Target",target)
    arrayproblems(array,target)
    print("Answer",array)

  • @mohammedfahidm5858
    @mohammedfahidm5858 3 ปีที่แล้ว +2

    Oru Doubt... num.contain() oru function alle... so inside that function oru comparison tanne lle nadakunne.. Apo aa function matram O(n) varulle?. Total program nn O(n^2) ??

  • @hasanulbanna7124
    @hasanulbanna7124 2 ปีที่แล้ว

    def rearrange(ls,target):
    for i in range (0,len(ls)):
    if ls[i]==target:
    ls.append(ls[i])
    del ls[i]
    return ls
    Space complexity = O(1)
    Time complexity = O(n)

  • @amaljs4168
    @amaljs4168 2 ปีที่แล้ว

    def arrange(array,number):
    j=len(array)-1
    if array[j]==number:
    j-=1
    for i in range(0,len(array)-1):
    if j>=i:
    if array[i]==number:
    array[j],array[i]=array[i],array[j]
    j-=1


    return print(array)
    arrange([1,3,5,2,5,1,8,14,1],1)
    Answer :
    [14, 3, 5, 2, 5, 8, 1, 1, 1]

  • @Raihan-Rahoof
    @Raihan-Rahoof ปีที่แล้ว

    can we use more inbuilt function

  • @JR7yt.
    @JR7yt. 3 หลายเดือนก่อน +1

    function same(arr, t) {
    let normalV = [];
    let sameV = [];
    let newArr;
    for (let i = 0; i < arr.length; i++) {
    if (arr[i] === t) {
    sameV.push(arr[i]);
    } else {
    normalV.push(arr[i]);
    }
    }
    return (newArr = [...normalV, ...sameV]);
    }
    const result = same([3, 5, 3, 4, 7, 3, 9, 3], 3);
    console.log(result);
    The time complexity and space complexity are O(n).

  • @vinayakvishnu8953
    @vinayakvishnu8953 5 หลายเดือนก่อน

    Thanks❤

  • @aneesh.augustine
    @aneesh.augustine ปีที่แล้ว +2

    java script
    time and space complexity o(1)
    let arr = [6, 1, 6, 8, 10, 4, 15, 6, 3, 9, 6];
    let target = 6;
    console.log(arr);
    function sort(arr, target) {
    arrLength = arr.length;
    for (let i = 0; i < arrLength; i++) {
    if (arr[i] == target) {
    let val = arr[i];
    arr.push(val);
    arr.splice(i, 1);
    }
    }
    return arr;
    }
    console.log(sort(arr, target));

  • @vishnuprasad8702
    @vishnuprasad8702 3 ปีที่แล้ว +1

    Node solution
    First Method =>
    const twoNumberSum = (array, target) => {
    for (let i = 0; i < array.length - 1; i++) {
    for (let j = i + 1; j < array.length; j++) {
    if (array[i] + array[j] === target) return [array[i], array[j]];
    }
    }
    return null;
    }
    const array = [6, 5, 4, 3, 9, 8, 0];
    const target = 10;
    console.log(twoNumberSum(array, target));
    Second Method=>
    const twoNumberSum = (array, target) => {
    let set = new Set();
    for (let i = 0; i < array.length; i++) {
    let number = array[i];
    let match = target - number;
    if (set.has(match)) {
    return [number, match];
    } else {
    set.add(number);
    }
    }
    return null;
    }
    const array = [6, 5, 4, 3, 9, 8, 0];
    const target = 10;
    console.log(twoNumberSum(array, target));

  • @vishnuprasad8702
    @vishnuprasad8702 3 ปีที่แล้ว +7

    Solution in javascript
    //--First Method--// //--Complexity O(n2)T, O(1)S--//
    const sameNumber = (array, target) => {
    for (j = array.length -1; j > 0; j--) {
    if(array[j] !== target) {
    for (i = 0; i {
    for (i = array.length - 1; i >=0 ; i--) {
    if(array[i] === target) {
    array.splice(i, 1)
    array.push(target)
    }
    }
    return array;
    }
    const array = [6, 1, 6, 8, 10, 4, 15, 6, 3, 9, 6];
    const target = 6;
    console.log(sameNumber(array, target));

  • @vajidnalakath8060
    @vajidnalakath8060 2 ปีที่แล้ว +2

    public class Sample {
    public static int[] SwaptoEnd(int array[],int target) {
    for(int j=array.length-1;j>0;j--) {
    if(array[j]!=target) {
    for(int i=0;i

  • @khaderafsal
    @khaderafsal 2 ปีที่แล้ว +2

    public static void swap(int[] array, int target){
    for(int i=0;ii;j--){
    if(array[j]!=target ){
    int temp=array[i];
    array[i]=array[j];
    array[j]=temp;
    }
    }
    }
    }
    for(int i=0;i< array.length;i++){
    System.out.println(array[i]);
    }
    }
    }

  • @adhilfouzi5511
    @adhilfouzi5511 ปีที่แล้ว

    Dart solution
    List twoNumberSum(List array, int target) {
    array.toSet();
    for (int i = 0; i < array.length; i++) {
    int num = array[i];
    int match = target - num;
    if (array.contains(match)) {
    return [num, match];
    } else {
    array.add(num);
    }
    }
    return [];
    }
    void main() {
    List array = [6, 5, 7, 9, 4, 0, 2];
    int target = 10;
    List result = twoNumberSum(array, target);
    for (int i = 0; i < result.length; i++) {
    print(result[i]);
    }
    }

  • @shamseerpv8647
    @shamseerpv8647 3 ปีที่แล้ว

    . Android studio , fuleter ഇവ windows 10 ആണോ ? Ubandu വില്യാണോ ? ഉപയോഗിക്കാൻ നല്ലത്

  • @fsocietynauran8605
    @fsocietynauran8605 3 ปีที่แล้ว +3

    Day 2, njan eddaum ethittunde.
    Pinne aaa introill paranja sambavam indallo ( engakke eth inn anne, njangakk eth nale anne ) Ath njan oru 4 pravisham rewind cheyth nokki enittum manasilayella😂

  • @ummarfarooquk3514
    @ummarfarooquk3514 3 ปีที่แล้ว +1

    Macchane idh powlikkum 😍💯

  • @jijomrrover3785
    @jijomrrover3785 ปีที่แล้ว +1

    let arr=[2,3,5,6,4,6,3,8];
    let target=6;
    function fun(target,arr){
    let limit=arr.length-1
    for(let i=0;i

  • @udaysankar9411
    @udaysankar9411 3 ปีที่แล้ว +7

    ' déjà vu ' പറ്റി കേട്ടിട്ടുണ്ടോ ഈ ക്ലാസ് കണ്ടപ്പോള്‍ എനിക്ക് അത് തോന്നി

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +5

      ആഹാ! dejavu തോന്നിക്കാൻ ഇത് മുന്നേ നീ പഠിച്ചോണ്ടാവും 😄

    • @krayshellinc2015
      @krayshellinc2015 3 ปีที่แล้ว +3

      A glitch in the matrix or someone else is trying to communicate with you from another universe

  • @theophinjohnson8234
    @theophinjohnson8234 3 ปีที่แล้ว +1

    Time = O(n)T
    space = O(1)S
    public class ArrayProblems {
    public static int[] moveValueToEnd(int [] array) {
    int length = array.length;
    int i=0,temp,j=length-1;
    while(i

  • @ABINBIJU
    @ABINBIJU 6 หลายเดือนก่อน

    for (int i=0;i

  • @raishadn1036
    @raishadn1036 2 ปีที่แล้ว

    Array yilee elements print cheyyaan for loop use cheyyunnund... But athinte O(n) enthaa edukkaathath?
    Pls reply

    • @raishadn1036
      @raishadn1036 2 ปีที่แล้ว

      Aarenkiklm reply tharoo?

    • @mohammedsafvan6344
      @mohammedsafvan6344 2 ปีที่แล้ว

      @@raishadn1036 Aaa bhagham java specific aaanennu thonunnu python il okke nerittu array print cheyyam

  • @rebinnajeeb9293
    @rebinnajeeb9293 ปีที่แล้ว

    100k challenge padichett ee series padichaal eluppano?I mean python il full cheyyunnathano nallath or?...

  • @fathimasherin2095
    @fathimasherin2095 5 หลายเดือนก่อน

    using dart
    class Solution {
    List moveSix(List nums, int target) {

    int n=nums.length-1;
    int temp=0;
    int i=0;
    while(i

  • @orzogaming4285
    @orzogaming4285 3 ปีที่แล้ว +3

    From brirtish academy Koyilandy 😅💥🔥
    powli presentation 🔥😍

  • @arunthomas5989
    @arunthomas5989 3 ปีที่แล้ว +1

    sir ee Hackingum codingum tamelulla bendam enta

    • @rishikesh2757
      @rishikesh2757 3 ปีที่แล้ว +3

      coders are not hackers but hackers are probably coders too

  • @agpskalaparipaadeex7077
    @agpskalaparipaadeex7077 ปีที่แล้ว

    public static int[] sol(int[] arr,int target){
    int i=0,j=arr.length-1;
    while(i

  • @sandeepkarippayil9282
    @sandeepkarippayil9282 3 ปีที่แล้ว +1

    Length -1 cheyendallo

  • @safwankanniyath7694
    @safwankanniyath7694 3 ปีที่แล้ว

    adipoli

  • @raviganeshm9606
    @raviganeshm9606 3 ปีที่แล้ว +7

    public class Main
    {
    public static int[] rearrangeArray(int[] arr, int num) {
    int i=0, j=arr.length-1;
    while(i < j ){
    if(arr[i] == num) {
    if(arr[j] == num) {
    j-=1;
    }
    else {
    arr[i] += arr[j];
    arr[j] = arr[i] - arr[j];
    arr[i] = arr[i] - arr[j];
    i++;
    j--;
    }
    }
    else {
    i++;
    }
    }
    return arr;
    }
    public static void main(String[] args) {
    int[] arr = {6,1,6,7,8,4,5,6};
    int num = 6;
    int[] res = rearrangeArray(arr, num);
    for(int k=0; k

    • @raviganeshm9606
      @raviganeshm9606 3 ปีที่แล้ว +1

      a = [6,4,6,7,8,9,4,5,6]
      b = 6
      for i in range(len(a)):
      if a[i] == b:
      a.append(a.pop(i))
      print(a)
      #Time complexity O(n)
      #Space complexity O(1)

    • @shaheenhyder8231
      @shaheenhyder8231 3 ปีที่แล้ว +2

      Congragulations you are selected as the winner. Please share your mobile number and email Id for further communication

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +1

      you can share your details to 7034395811 👍🏼

    • @Lofi_Night_YT
      @Lofi_Night_YT 2 ปีที่แล้ว +1

      How did you get this code

  • @prathyupkpk733
    @prathyupkpk733 3 ปีที่แล้ว +2

    72k subscribers💙💚💚💙😍😍😍😍😍

  • @TOP10_cybro
    @TOP10_cybro 3 ปีที่แล้ว +1

    Super

  • @redstoneninja3375
    @redstoneninja3375 3 ปีที่แล้ว

    Crossroads ❤

  • @rajaduraii8499
    @rajaduraii8499 3 ปีที่แล้ว

    Hello Crossroads Team... your student Abilash (Peter) has been sending me your TH-cam link daily... he ask me to comment his name in every link..🔥🔥🔥 yours Obediently with love PARTNER GUYZ

  • @sanalls
    @sanalls 3 ปีที่แล้ว +3

    Time complexity: O(n)
    Space complexity: O(n)
    public class Arrange{
    public static int[] arrange (int[] array, int target){
    int i = 0;
    int j = array.length-1;
    while(i

    • @sanalls
      @sanalls 3 ปีที่แล้ว

      janguage : java

    • @musthafakoppam
      @musthafakoppam 2 ปีที่แล้ว

      Bro... Last value 6 allaathath koduthal result marunnundd..... pls check...

  • @adarshkm8503
    @adarshkm8503 3 ปีที่แล้ว

    ithinte pseudo code paranju tharuo?

  • @JohnDoe-to8vr
    @JohnDoe-to8vr ปีที่แล้ว

    #InJavaScript
    function moveTargetToEnd(arr, target) {
    let rightPointer = arr.length-1;
    for (let i = 0; i

    • @keraleeyan
      @keraleeyan 11 หลายเดือนก่อน

      Bro ithokke padichal job kittumo ??

    • @BrototypeMalayalam
      @BrototypeMalayalam  11 หลายเดือนก่อน +2

      Ith veruthe padichathu kond job kitilla proper aay padich skill set cheythaal nalla joblekk keraam, for more help connect with our team

    • @JohnDoe-to8vr
      @JohnDoe-to8vr 11 หลายเดือนก่อน +1

      @@keraleeyan serious ayi padichal kittum

    • @keraleeyan
      @keraleeyan 11 หลายเดือนก่อน +1

      @@JohnDoe-to8vr c program enikku kurachu ariyam , enikku enthokke cheyyan pattum c coding use cheythu ??? . Projects cheythalalle job kittoo !! Atha chothiche ?? . C coding njan collagil adichittundu but covid timil aayathinal theory mathram aayirunnu !!

  • @jrmations7557
    @jrmations7557 3 ปีที่แล้ว

    Sir ഞാൻ ഇപ്പൊൾ പ്ലസ് two aan പഠിക്കുന്നത്.njn കണക്കിൽ ഒരു ആവറേജ് സ്റ്റുഡൻ്റ് ആണ്.എനിക്ക്
    computer science പഠിക്കാൻ കഴിയുമോ...? ഏത് തരം കണക്കാണ് കമ്പ്യൂട്ടർ സയൻസിൽ പഠിക്കുന്നത്? കമ്പ്യൂട്ടർ സയൻസിൽ കണക്കിൻ്റെ role എന്താണ്.?

    • @jrmations7557
      @jrmations7557 3 ปีที่แล้ว

      Coding cheyyumbol maths important aano

    • @jrmations7557
      @jrmations7557 3 ปีที่แล้ว

      Sir,Enthanu problem solving skills enn kond udeshikkunnath..

  • @sudo-mon2848
    @sudo-mon2848 ปีที่แล้ว

    function arrange_array(array , target)
    {
    let i = 0;
    let j = (array.length - 1);
    while(i

  • @avishithpm1712
    @avishithpm1712 3 ปีที่แล้ว +1

    ipo oru kariyam manasill aayii ee pani athra eluppam alla.....10 manikk kanda vido ya ithu vare answer complete chiyan pattiyillaa..python ill simple aayii appendum remove vum vechu chiyaam bt..using i and j in for loop is tricky...

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      engane cheythalum preshanilla, answer kittyal comment cheyye ✌🏼

  • @mrbmalayalam
    @mrbmalayalam 2 ปีที่แล้ว +1

    //dart [not for cash prize]
    void main() {
    var s= result();
    print(s);
    }
    result(){

    List arr = [6,6,6,8,10,4,15,6,3,4,1];
    int target=6;
    int j=arr.length-1;
    for(int i=0;i< arr.length;i++) {
    if(arr[j]==target) {
    j--;

    }
    if(arr[i]==target) {
    int swap=arr[j];
    arr[j]=arr[i];
    arr[i]=swap;
    j--;
    }

    if(i==j) {
    break;
    }


    }

    return arr;
    }

  • @MrAmeer27
    @MrAmeer27 3 ปีที่แล้ว +1

    Nale nnu parayum innale akumo?

  • @s4studios379
    @s4studios379 3 ปีที่แล้ว

    Array out of bound exception ennu kaanikunnu result ethiley frst twoNumberSum problem cheympol.

    • @s4studios379
      @s4studios379 3 ปีที่แล้ว +1

      Sorry bro error onnumillaa nte oru mistake arinnuu epol issue onnmillaaa

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      good

  • @namithajoby4490
    @namithajoby4490 3 ปีที่แล้ว +1

    🔥

  • @nsnizam6596
    @nsnizam6596 3 ปีที่แล้ว +5

    ഞാനേ 100k kanditt vera ,allathe ith മുന്നോട്ട് കൊണ്ടൊവ്വൻ പറ്റില്ല..

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +7

      എന്നാ വേഗം വാ, നീ ഒന്ന് വിചാരിച്ചാൽ 5 ദിവസം മതി 💪🏼

    • @nsnizam6596
      @nsnizam6596 3 ปีที่แล้ว

      @@BrototypeMalayalam 👍🏻

  • @BroForYou
    @BroForYou 3 ปีที่แล้ว

    In Video ella Bro

  • @dr_strange.6165
    @dr_strange.6165 3 ปีที่แล้ว

    🔥🔥🔥

  • @parthivk9075
    @parthivk9075 3 ปีที่แล้ว +1

    target - arrayil illa first number cheythal kittuna number aa arayil indo check cheytha pore . For example 10-6 =4 appo aa arayil enji 4 indo nokkiya pore

    • @jainibrm1
      @jainibrm1 3 ปีที่แล้ว +1

      ആദ്യം 6 വന്നാൽ പെട്ടന്ന് കിട്ടും 5 വന്നാലോ. മൊത്തം array search ചെയേണ്ടി വരും time complexity koodum.

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +1

      array il number undo enn check cheyyunnath O(n) time comlexity varum. so ooro numberinum match check cheyyumbol o(n^2) varum. Ee method aanu 2 for loop ittu 1st cheythathu. Second method il set il indo enn nokan o(1) time complexity aanu. so total o(n) varullu.

    • @parthivk9075
      @parthivk9075 3 ปีที่แล้ว +1

      @@BrototypeMalayalam hmm

  • @arunkrish11
    @arunkrish11 2 หลายเดือนก่อน +1

    JAVA
    package sameNumberAtEnd;
    import java.util.Arrays;
    public class SameNumberAtEnd {
    public static int[] sameNumerAtEnd(int[] array, int sameNum) {
    int j = array.length-1;
    for (int i = 0; i < j; i++ ) {
    if (array[j] == sameNum) {
    j = j - 1;
    }
    if (array[i] == sameNum) {
    int temp = array[j];
    array[j] = sameNum;
    array[i] = temp;
    }
    }
    return array;
    }

    public static void main(String[] args) {
    int[] array = { 2, 6, 5, -4, 6, 8, 11, 6, 1, 6 };
    int sameNum = 6;
    int[] result = sameNumerAtEnd(array, sameNum);
    System.out.print(Arrays.toString(result));
    }
    }
    OUTPUT: [2, 1, 5, -4, 11, 8, 6, 6, 6, 6]

  • @sankee6th
    @sankee6th ปีที่แล้ว

    bro intro bgm 1.5x ill set ann kekkann normal ullathinekaal😁

  • @blank-xtx
    @blank-xtx 11 หลายเดือนก่อน

    public class Sample{
    public static int[] result(int[] array, int target){
    int temp=0;
    int i=0;
    int j=array.length-1;
    while(j>=i){
    if(array[i] == target && array[i] == array[j]){
    j--;
    }else if(array[i] != target)
    i++;
    else if(array[i]==target && array[i]!=array[j]){
    temp = array[j];
    array[j] = array[i];
    array[i] = temp;
    i++;
    j--;
    }
    }
    return array;
    }
    public static void main(String[] args){
    int[] array = {6,1,6,8,10,4,15,6,3,9,6};
    int target = 6;
    int[] display = result(array, target);
    for(int i=0;i

    • @BrototypeMalayalam
      @BrototypeMalayalam  11 หลายเดือนก่อน

      Please you the telegram groups for Doubt clearing sections.

  • @SanjaySanjayxcode
    @SanjaySanjayxcode 7 หลายเดือนก่อน

    Const read = require("readline-sync")
    userInput=read.question("enter choice")
    Let arr=[8,16,32,9,10,4]
    for(i=0;ii;j--){
    if(arr[i]===parseInt(val)){
    let tempval=arr[i]
    arr[i]=arr[j]
    arr[j]=tempval
    }
    }
    }

  • @bimalboby8854
    @bimalboby8854 3 ปีที่แล้ว

    Second ✌️

  • @shincyraffy4762
    @shincyraffy4762 3 ปีที่แล้ว +1

    public class array2 {
    public static int[] placeAtEnd(int[] arr, int val) {
    int temp;
    int i=0,j=arr.length-1;
    while(i

  • @MrAmeer27
    @MrAmeer27 3 ปีที่แล้ว

    👍👍

  • @jainibrm1
    @jainibrm1 3 ปีที่แล้ว

    👌🌹

  • @ameen4038
    @ameen4038 3 ปีที่แล้ว

    Combo😂💯

  • @GOODIESS
    @GOODIESS 3 ปีที่แล้ว

    Pever🔥🔥

  • @hidashsaidu8466
    @hidashsaidu8466 3 ปีที่แล้ว

    First

  • @abhishekballullayak2494
    @abhishekballullayak2494 3 ปีที่แล้ว

    public class ArrayElementShift
    {
    public static int[] shiftToEnd( int[] array,int target)
    {
    int i;
    int j=array.length-1;
    int temp;
    for(i=0; i

  • @shamilussainc6456
    @shamilussainc6456 3 ปีที่แล้ว +1

    public class ArraySample2 {
    public static void main(String[] args){
    int[] array = new int[]{6,1,6,10,4,15,6,3,9,6};
    System.out.print("Array before arrangement : ");
    for (int item: array) {
    System.out.print(item+" ");
    }
    int i=0,j=array.length-1;
    while (i != j){
    if (array[i] == 6){
    if(array[j]!=6){
    int temp = array[j];
    array[j] = array[i];
    array[i] = temp;
    i++;
    }
    j--;
    }else {
    i++;
    }
    }
    System.out.print("
    Array after arrangement : ");
    for (int item: array) {
    System.out.print(item+" ");
    }
    }
    }
    please comment your opinion about this one.

  • @vishnu.s_
    @vishnu.s_ 3 ปีที่แล้ว +5

    ഇന്നത്തെ pratical section പൊളിച്ചു.പക്ഷെ പാവം array അതിനെ വെച്ച് ഇങ്ങനെ ഒക്കെ ചെയ്യണോ.അവസാനത്തെ program queue ഇന്റെ insertion പോലെ ചെയാം
    Class sort{
    public static void main (String[] ar){
    int[25] a={6,1,6,8,10,4,15,6,3,9,6};
    int e=6;
    int rear=a.length-1;
    for(int i=0;i

    • @lucifer-eo6bw
      @lucifer-eo6bw 2 ปีที่แล้ว

      Broo ithu pola sambhavam pettannu pidi kittan valloom trick ondengil paranu tharo

    • @lucifer-eo6bw
      @lucifer-eo6bw 2 ปีที่แล้ว +1

      Question manasilaayii paksha logic katthunilla 🤔🤔

    • @athul5041
      @athul5041 2 ปีที่แล้ว

      @@lucifer-eo6bw Kure logic workout cheythu nokkiyal kittum. It grows in time.

  • @shahaludheenk1533
    @shahaludheenk1533 3 ปีที่แล้ว

    Nginx tutorial ennn indavaa

  • @uv1906
    @uv1906 3 ปีที่แล้ว

    ❤❤❤❤

  • @CA-bg3im
    @CA-bg3im 4 หลายเดือนก่อน

    public class ArrayMovetoEnd {

    public static int[] rearrange(int[] array,int target) {
    int i=0, j=array.length-1;
    int temp;

    while(i

  • @syamilycm7247
    @syamilycm7247 3 ปีที่แล้ว +1

    Anyone knows about the history of neural nets in computing?

  • @PriyanjithN
    @PriyanjithN 10 หลายเดือนก่อน

    const arr = [6,1,6,8,10,4,15,6,3,9,6];
    function allNumberToEnd(arr, target){ // O(n)T O(1)S
    let i = 0;
    let j = arr.length - 1;
    while(i < j){
    if(arr[j] === target){
    j--;
    continue;
    }
    if(arr[i] === target){
    const temp = arr[i];
    arr[i] = arr[j];
    arr[j] = temp;
    i++;
    j--;
    continue;
    }
    i++;
    }
    return arr;
    }
    console.log(allNumberToEnd(arr, 6)); // O(n)T O(1)S

  • @gokulkrishna3242
    @gokulkrishna3242 3 ปีที่แล้ว +1

    Korach delay varunundallo
    Video 2 divasay illa
    Waiting arnu

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      need to complete editing and final touches, thats why! we will be back soon 🔥

  • @GADESTO
    @GADESTO 3 ปีที่แล้ว +1

    100k bayngara sambavamalle 🤩

  • @adnanajju6025
    @adnanajju6025 3 ปีที่แล้ว +1

    I got

  • @jithinp8441
    @jithinp8441 3 ปีที่แล้ว +3

    1.25x set annnn😁

  • @albinjijo3329
    @albinjijo3329 3 ปีที่แล้ว

    Video eppo varum

  • @aromalhere
    @aromalhere 3 ปีที่แล้ว +4

    //Time complexity: O(N),
    //Space complexity: O(1)
    public class Main{
    static int[] sortArray(int []array,
    int key)
    {
    int i = 0;
    int j = array.length - 1;
    while (i < j)
    {
    while (i < j && array[j] == key)
    j--;
    if (array[i] == key)
    swap(array, i, j);
    i++;
    }
    return array;
    }
    static int[] swap(int []arr, int i, int j)
    {
    int temp = arr[i];
    arr[i] = arr[j];
    arr[j] = temp;
    return arr;
    }
    public static void main(String[] args)
    {
    int []arr = { 6,1,6,8,10,4,15,6,3,9,6 };
    int Key = 6;
    int []res = sortArray(arr, Key);
    for(int i = 0; i < arr.length; i++)
    System.out.print(res[i] + " ");
    }
    }
    //Aromal S
    //aromalsanthosh@protonmail.com
    //+917902293783

    • @bibinbabu2734
      @bibinbabu2734 3 ปีที่แล้ว

      I think the time complexity is 0(n^2)

    • @bibinbabu2734
      @bibinbabu2734 3 ปีที่แล้ว

      Use OK two while loop

  • @fayiz.098
    @fayiz.098 3 ปีที่แล้ว

    💪

  • @shad016
    @shad016 3 ปีที่แล้ว

    Kore kaalayallo kandittu??

  • @hishamahammmedkm1936
    @hishamahammmedkm1936 3 ปีที่แล้ว +1

    where is the tamil Guy

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      അവന്റെ സമയം ആവുമ്പോൾ അവൻ വരും 🔥🤩

  • @radz115
    @radz115 3 ปีที่แล้ว +4

    Time Complexity : O(n)
    Space Complexity : O(1)
    public class Main
    {
    public static int[] SwapToEnd(int[] Array,int target)
    {
    int j = Array.length - 1;
    for (int i = 0; i < Array.length; i++)
    {
    if (Array[i] == target && i < (j - 1))
    {
    while (Array[j] == target && i < (j - 1))
    {
    j--;
    }
    int temp = Array[j];
    Array[j] = Array[i];
    Array[i] = temp;
    }
    }
    return Array;
    }

    public static void main(String[] args)
    {
    int[] Array={6,1,6,8,10,4,15,6,3,9,6};
    int target=6;
    System.out.print("Before : ");
    for(int i=0;i

  • @megamer3256
    @megamer3256 3 ปีที่แล้ว

    i am coming

  • @adnanajju6025
    @adnanajju6025 3 ปีที่แล้ว +6

    I found some laaggggggg

  • @rayyanrasheed8010
    @rayyanrasheed8010 3 ปีที่แล้ว +2

    2:21 ashaante tactical moves
    19:08 sonu cheythappol aayirunnu chirikkan othiri ullath um pinne nalla rasam ullath um
    21:38 appol kittunna oru sukam undello ha oru valiya manasukamaa
    21:58 patthu thalaya thani ravanan like Dillu bhai. Athinte pinnile secret obviously nikhil sir thanne alle randaludeum mentor Uff
    29:25 ind ennnu sonu parangappol aaki aayirunnu puthiya pillark freedom kodukkunath koodipooyo
    32:13 ashante oro tactical moves Uff

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +2

      അതെ അതിബുദ്ധിപരമായ നീക്കങ്ങൾ 😜
      ആഹ്‌ അതും ഒരു കാലം 😋
      പിന്നല്ല, ഇരട്ട പെറ്റ സുഖം 😂
      അത് പിന്നെ അത്രയേ ഉള്ളു 🤞🏼
      പുതിയ പിള്ളേർക്ക് സ്വല്പം freedom കൊടുക്കുന്ന ഒരു modern family ആണ് നമ്മുടേത് 😎
      വീണ്ടും വീണ്ടും തന്ത്രപരമായ നീക്കങ്ങൾ 😂

    • @rayyanrasheed8010
      @rayyanrasheed8010 3 ปีที่แล้ว

      @@BrototypeMalayalam Uff

  • @ameenulhaseeb3899
    @ameenulhaseeb3899 3 ปีที่แล้ว +3

    public class Main {


    public static int [] moveCommonElement(int [] inputArr,int target) {
    int j=inputArr.length-1;
    for(int i=0;i< inputArr.length;i++) {
    if(inputArr[j]==target) {
    j--;

    }
    if(inputArr[i]==target) {
    int swap=inputArr[j];
    inputArr[j]=inputArr[i];
    inputArr[i]=swap;
    j--;
    }

    if(i==j) {
    break;
    }


    }

    return inputArr;
    }

    public static void main(String args[]) {
    int [] inputArr = {6,8,9,6,4,6,8,7,6,8,3,6};
    int target=6;
    int [] result=moveCommonElement(inputArr,target);
    for(int i=0;i

    • @rahula6605
      @rahula6605 2 ปีที่แล้ว

      thankyou bro 🥰🥰

  • @uvvaishnav1998
    @uvvaishnav1998 3 ปีที่แล้ว

    Entha video eedan thamasam?🤔

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      few more editing works to complete, thats why 👍🏼

  • @MohammedJaseemTp
    @MohammedJaseemTp 2 ปีที่แล้ว

    # in python
    # time complexity: O(n) | 1 for loop
    # space complexity: O(1) | no extra space
    def arrayinterchangenumtolast(array,target):
    i = j = len(array)-1
    for i in range(i,-1,-1):
    if array[i] == target:
    array[i],array[j] = array[j],array[i]
    j -= 1
    array = [23,48,45,23,69,45,63,23,89,23,82,23,97,23,62,23,45,56,23,89]
    target = 23
    arrayinterchangenumtolast(array,target)
    print("Array:",array)
    print("Target",target)
    print("OutPur",array)

  • @shawnbeans7389
    @shawnbeans7389 3 ปีที่แล้ว +1

    ccna tutorial eduva

  • @BroForYou
    @BroForYou 3 ปีที่แล้ว +1

    Anth patti Brothers kora ayalo kandit

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว

      ഒന്ന് rest എടുത്തതാ! പെട്ടെന്ന് തന്നെ വരും 🔥

  • @_dikshitm7715
    @_dikshitm7715 3 ปีที่แล้ว +2

    2 aalum ore wave length aaa....othupokumm 😂😇

  • @suhailadrsseri788
    @suhailadrsseri788 3 ปีที่แล้ว +1

    shaheen thakarkkanallo

  • @tojyjv748
    @tojyjv748 3 ปีที่แล้ว

    എഴുതുന്നതെല്ലാം ചരിഞ്ഞു പോകുന്നു. വായിക്കാൻ പ്രയാസം. രണ്ടുപേരും എഴുന്നേറ്റ് നിന്ന് സംസാരിച്ചാൽ എഴുതുന്നത് നേരെ ആകും. സാധാരണ എല്ലാവരും ക്ലാസ്സ് എടുക്കുന്നത് എഴുന്നേറ്റ് നിന്നിട്ട് ആണല്ലോ.

  • @SidhikTanalur
    @SidhikTanalur 3 ปีที่แล้ว +3

    var six = 6;
    var numbers = [6,1,6,8,10,4,15,6,3,9,6];
    var new_nums = [];
    for (var i = 0; i < numbers.length; i++) {

    if (numbers[i] == six) {
    new_nums.push(numbers[i]);
    } else {
    new_nums.unshift(numbers[i]);
    }
    }
    numbers = new_nums;
    console.log(JSON.stringify(numbers));

  • @robincr9533
    @robincr9533 3 ปีที่แล้ว

    Changayi mare ningale kanan illa lo

    • @BrototypeMalayalam
      @BrototypeMalayalam  3 ปีที่แล้ว +2

      മച്ചാനെ.. late aayalum, latesta varum 😘

  • @snehasunny6585
    @snehasunny6585 2 ปีที่แล้ว

    public class Main {
    public static void main(String[] args) {
    int intArray[]={6,1,6,8,10,4,15,6,3,9,6};
    int end=intArray.length-1;
    for(int i=0;i0){
    if(intArray[i-1]==intArray[end]){
    break;
    }
    }
    int temp = intArray[end];
    intArray[end] = intArray[i];
    intArray[i] = temp;
    }
    }
    System.out.println(Arrays.toString(intArray));
    }
    }
    Time: O(n), Space O(1)

  • @SarinM
    @SarinM 3 ปีที่แล้ว

    Hack Club member spotted

  • @Apxc.
    @Apxc. 5 หลายเดือนก่อน

    import java.util.*;
    public class Main{
    public static void main(String[] args){
    int[] a={6,1,6,8,10,15,6,3,9,6};
    int selectedNumber = 6;
    moveSelectedNumberToEnd(a, selectedNumber);
    System.out.println(Arrays.toString(a));
    }
    public static void moveSelectedNumberToEnd(int[] array,int selectedNumber){
    int n =array.length;
    int j=0;
    //Transing the aarr
    for (int i =0; i

  • @mohammed-rahil
    @mohammed-rahil 3 ปีที่แล้ว

    ❤️❤️❤️