Part10DataStructure

  Рет қаралды 15,793

Brototype Malayalam

Brototype Malayalam

Күн бұрын

Пікірлер: 53
@malayalivlogs2950
@malayalivlogs2950 3 жыл бұрын
ആദ്യമായിട്ട് ഞാൻ ഉറക്കം വരാതെ full video interestൽ കണ്ടു..
@raviganeshm3772
@raviganeshm3772 3 жыл бұрын
public class Main { public static String change(String str) { int count = 1; String newString = ""; for(int i=1;i
@raviganeshm3772
@raviganeshm3772 3 жыл бұрын
def change(s): d = {} newString="" for i in s: if i not in d: d[i] = 1 else: d[i]+=1 for key, val in d.items(): newString = newString + str(val) + key return newString print(change("AAABBC")) Time complexity = O(n) Space complexity = O(n)
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
congrats 🥳 you’re the winner 👏🏼 please send your photo and account details to 7034395811
@bibinmidhila1783
@bibinmidhila1783 3 жыл бұрын
Ethupolathe valuable aayittulla challenges pratheekshikkunnu
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
sure 💪🏼 check out our plans for 2021 kzbin.info/www/bejne/eIO6c6mHrdCferc
@hishamahammmedkm1936
@hishamahammmedkm1936 3 жыл бұрын
I like chaii more than content
@akashp4863
@akashp4863 3 жыл бұрын
A mutable object can be changed after it's created, and an immutable object can't.
@ronyjoseph7868
@ronyjoseph7868 3 жыл бұрын
Stack quee linked list, double linked ithokke c yil ulla data structures name alle, java, python, c# avideyum e same name thanne aano indakuka, atho oro language inum avrdutheya data structures indo. Onn elupathil xplain cheyyamo
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
Ithonnum language specific alla. Ella language ilun cheyyan pattum
@MrAmeer27
@MrAmeer27 3 жыл бұрын
ഇങ്ങനെ പോയാമതി മാറ്റം വരുത്തണ്ട നിങ്ങൾ real ക്ലാസ് എടുക്കുന്ന പോലെ ആണ് നിങ്ങൾ ക്ലാസ് എടുക്കുന്നത് നിങ്ങളുടെ ചളികളും ഞങ്ങൾ ആസ്വദിച്ചിട്ടാണ് ക്ലാസ് കേൾക്കുന്നത് , തമഷകല് ഇല്ലാതെ ക്ലാസ് എടുത്താൽ കുറച്ചു kazinjal മടുപ്പ് തോന്നും
@maranan7771
@maranan7771 Жыл бұрын
in Java Script o(n)st function shafin(str) { let count = 1; let result = ''; for (let i = 0; i < str.length; i++) { if (str.charAt(i) === str.charAt(i + 1)) { count++; } else { result += count + str.charAt(i)+' '; count = 1; } } console.log(result); } shafin('aaabbc')
@BroForYou
@BroForYou 3 жыл бұрын
Nikhil Bro and team 🥳🥳🥳🥳
@muhammedswalih4480
@muhammedswalih4480 3 жыл бұрын
String arrayude value aayittu str. Length() assign cheyyumbol error varunnu. Anyone can help me...?
@Tourist-hj1ib
@Tourist-hj1ib 3 жыл бұрын
public class Main12 { public static void equator(String str) { int count=1; StringBuilder st2 =new StringBuilder(); int i=0; char[] charArray=str.toCharArray(); while(i
@richard_shaju
@richard_shaju Жыл бұрын
😃
@JobinSelvanose
@JobinSelvanose 3 жыл бұрын
ellarum ethentha evide comment cheythu natikune. *CROSSROADS* challi store alla pakka content center for mallus anu. pinney challi oru bonus ayi tharunu ene ullu challi kanan mathram varanda (challiyadi is not and high income skill Lol) so skills set chey kude challiyadi kelk
@GOODIESS
@GOODIESS 3 жыл бұрын
Chaliyadi illand sugamillaannu
@adharshm6808
@adharshm6808 3 жыл бұрын
C++11 there is a type for string as in the case of Java.
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
yeah 👍🏼
@sebinsaji9573
@sebinsaji9573 3 жыл бұрын
Chali venam
@abhilashvm9291
@abhilashvm9291 3 жыл бұрын
Class maathram aayal bore aayirikkum... Fun koodi venam
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
ഓക്കേ ഓക്കേ 👍🏼
@rasheedthayyil9234
@rasheedthayyil9234 3 жыл бұрын
Chali uyir😎
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
😂😂😂
@ameen1110
@ameen1110 3 жыл бұрын
Part 8 nte cash award enthaayi🤔
@ramsankar4319
@ramsankar4319 2 жыл бұрын
input: AAABBCDD output : 3A2B1C2D public class CountCharacter { public void countChar(String text){ int i = 0; String s = ""; while(i < text.length()){ int k = 1; while(i + k < text.length() && text.charAt(i) == text.charAt(i+k)){ k++; } s = s + k + ""; s = s + text.charAt(i); i = i + k; } System.out.println(s); } public static void main(String[] args) { CountCharacter inString = new CountCharacter(); inString.countChar("AAABBCDD"); } }
@muhammadramzy6403
@muhammadramzy6403 3 жыл бұрын
const setChali = true
@sandeepputhalath3922
@sandeepputhalath3922 2 жыл бұрын
Hey ,can anyone please tell me if this code is good or not. I am getting the desired output .But ,I don't feel like the code is good. Hope to get a reply. public class sample { public static String encode(String str) { char[] charArray = str.toCharArray(); String newString =""; int count = 0; char tempChar = charArray[0]; for(char val : charArray) { if(tempChar == val) { count++; } else { newString += String.valueOf((char)(count+'0')); newString += String.valueOf(tempChar); tempChar = val; count = 1; } } newString += String.valueOf((char)(count+'0')); newString += String.valueOf(tempChar); return newString; } public static void main(String ar[]) { System.out.println(encode("abbbbbccccddd")); } }
@mohammed-rahil
@mohammed-rahil 3 жыл бұрын
Chali Chali alallo?
@akashp4863
@akashp4863 3 жыл бұрын
conversation must Bigile. ellenki verum sada tutorial avoole
@uv1906
@uv1906 3 жыл бұрын
❤️❤️❤️❤️
@hishamahammmedkm1936
@hishamahammmedkm1936 3 жыл бұрын
Avan vannu
@rayyanrasheed8010
@rayyanrasheed8010 3 жыл бұрын
Ayyo chali veenam tto illenkil oru sukam poora just like only studying no entertainment
@govindrajeesh3832
@govindrajeesh3832 3 жыл бұрын
Ithu matthi serious aayal bore aayirikum.
@PriyanjithN
@PriyanjithN Жыл бұрын
occurence of alphabets numbered public class ChangeToNumbersOccuingAlphabet { public static String numberOfAlphabets(String str) { int count=1; String numberString=""; for(int i=0;i
@fadhilsaheer8877
@fadhilsaheer8877 3 жыл бұрын
chali venda enno 😭 this is cheating cinema style cheating 😥
@ajg3951
@ajg3951 3 жыл бұрын
class NoOfOccurenceOfCharacters { static final int MAX_CHAR = 256; static void getOccuringChar(String str) { int count[] = new int[MAX_CHAR]; int len = str.length(); for (int i = 0; i < len; i++) count[str.charAt(i)]++; // Create an array of given String size char ch[] = new char[str.length()]; for (int i = 0; i < len; i++) { ch[i] = str.charAt(i); int find = 0; for (int j = 0; j
@litebook1951
@litebook1951 3 жыл бұрын
ആ ചിരി ഒന്ന് കുറക്കോ @nikhil sir
@BrototypeMalayalam
@BrototypeMalayalam 3 жыл бұрын
അത് മാത്രം പറയരുത് 😫
@john-bq4pm
@john-bq4pm 3 жыл бұрын
time Complexity=O(n); space Complexity=O(n); public class SameString { public static String newString(String str){ int letterCount=1; char letterString; char[] charArray=new char[str.length()]; for(int i=0;i
@siyahulhaq7062
@siyahulhaq7062 3 жыл бұрын
First
@adarsh154
@adarsh154 3 жыл бұрын
O(n)TS public static string DuplicateCharCounter( string str){ int count = 1; StringBuilder st = new StringBuilder(); for(int i = 1;i
@favazabdulrasheed58
@favazabdulrasheed58 3 жыл бұрын
Njan ith cheythu nokki appo str[i]nte aa bhaagathu error und Ath string aan .Njan cheythath arrayude operation aanenn vayichappo mansilayi
@shirazmuhd3231
@shirazmuhd3231 3 жыл бұрын
Challi onnum Venda. Padippicha mathi
@vinuviswanath1728
@vinuviswanath1728 3 жыл бұрын
public class CountAndDisplayCharacters { public static void main(String[] args) { String input = "AABBBCCCCDEEEAA"; countAndPrintCharacters(input); } private static void countAndPrintCharacters(String input) { char prev = 0; int count = 1; String pattern = ""; for (int i = 0; i < input.length(); i++) { if (i == 0) { prev = input.charAt(i); } else { if (input.charAt(i) == prev) { count++; } else { pattern = pattern+prev+count; prev = input.charAt(i); count = 1; } } } pattern = pattern+prev+count; System.out.println(pattern); } } O(n)ST
Part11DataStructure
21:28
Brototype Malayalam
Рет қаралды 19 М.
Part6DataStructure
26:16
Brototype Malayalam
Рет қаралды 40 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.
I Sent a Subscriber to Disneyland
0:27
MrBeast
Рет қаралды 104 МЛН
Part 1 | Introduction To Programming | 3-Hour Coding Challenge
30:46
Brototype Malayalam
Рет қаралды 445 М.
Recursion
16:50
Brototype Malayalam
Рет қаралды 36 М.
C_104 Recursion in C | Introduction to Recursion
18:51
Jenny's Lectures CS IT
Рет қаралды 463 М.
Part8DataStructure
39:50
Brototype Malayalam
Рет қаралды 17 М.
C_62 Strings in C - part 1 | C programming tutorials
15:41
Jenny's Lectures CS IT
Рет қаралды 541 М.
Part16Data Structure
48:18
Brototype Malayalam
Рет қаралды 12 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.