Mobinga's Posts
Nairaland Forum › Mobinga's Profile › Mobinga's Posts
1 2 3 4 5 6 7 8 ... 10 11 12 13 14 15 16 17 18 (of 257 pages)
Act like you didn't see that ether preceding your post. https://img30.imageshack.us/img30/3078/obamamug.png |
*dhtml:Thank you very much D! Aha Beaf have you witnessed your sheer stupidity being brought out? ![]() ---- I don't understand how this guy stimulates himself whenever he hears of new tech? See how much he has referred to HTML5 as a beastie, the next best thing and everyone should learn it? What a profound fool. You can create Android apps in C# and good ol' Visual Studio, nothing beats that combination for sheer RAD, quality and code nirvana. There are a plethora of brilliant Mono ports to Android, the one from Novell stands out: http://mono-android.net/See how this clod was advising Android developers to do a concoction and use C# for their coding Pray, tell me, give a single sensible reason why developers should scrap using a language that was used to develop the UI the OS runs on? So going by your foolish logic, you can also say everyone should use JS to develop apps rather than C# which was pruned for windows, because C# is "dying out"? See how ldiotic you are? So with your severely limited knowledge you still speak on what you haven't the slightest idea about. Please just drop that silly C# android crap. It's senseless and you'd be severely flawed. You're lucky I didn't see that imbecility earlier. Also, tell me how Java is dying out. The biggest Mobile OS in the US has an API smoothly structured for core Java and XML, if that isn't a sign that more people would want to develop on it, thus increasing it'e relevance, then I don't know what is. You should speak on only what you have sufficient knowledge about. ----- I don't know whether new tech just tickles your fancy and you lose all sense of your puerile reasoning: Oh. I forgot, you don't even have common sense. LOL @ This relentless fool still saying this : Beaf:This is the fool that still thought " OH, Gee, Microsoft's next OS is touch and pruned for HTML5 and JS, we should throw away C#, COM, .NET . . . et.c" Fool. Do I even still need to go in on this? Since he has comprehensively been crushed, and resorted to posting his childish puerile Compuserve GIFS. ----- Beaf:That's very rich. Do you even think? How is some fancy front-end UI HTML5 going to even dent a back-end scripting technology like PHP, talk less of making it die out. Please tell me how HTML5 is going to phase out PHP? You better come up with a decent explanation for that one. ----- Every seeming new tech teases this fool and he refers to it as "the next best thing" and "everyone should be learning it". . . Just ridicule yourself in a bid to sound "smart". Haha. What a joke. It's about time this ldiot got murked. |
Shut up morron. You're getting hurt? ![]() Further confirming you negligible intelligence. Still running away from your gross lack comprehension? Your inability to comprehend written English is the root of this. I reiterate. What part of this below didn't you understand? *dhtml: Are you that slow? ![]() You went on to state this : Beaf: https://img560.imageshack.us/img560/5106/chrishahfresh.png These are the kind of slow empty headed ldiots we have in Aso Rock. What a waste. |
Dammit! *Were *Were *Were *Were |
lynxnoon:Why did you downgrade? Thought you where on that ICS swag ![]() |
Oh now you're digressing? Fool. Beaf:Look at this fool, explain how he would save the site in the cookies given the size limit, and retrieve them at will. LMFAO. Cookies are set with headers you ignorant illiterate. Ignorant fool arguing about what he hasn't the slightest idea about. All these stems from your inability to grasp simple written English. What part of this below don't you understand? *dhtml:You still went on with your neonatal brain to state this : Beaf:LMFAO. What an ldiot. Next time understand before attempting to exhibit your unparalleled lunacy. https://img560.imageshack.us/img560/5106/chrishahfresh.png https://img560.imageshack.us/img560/5106/chrishahfresh.png https://img560.imageshack.us/img560/5106/chrishahfresh.png |
Rhino.5dm: |
![]() Na wa for that site oh. soloqy:GBAM!! This is true. |
Beaf:Oh please shut up you fool, talking for the sake of it? You're talking of saving arrays containing contents of a page to cookies? I'm saying it's not even practically possible to do that, given cookies are a max of 4096 bytes. So he would save bits in one array, append then jump to the next cookie, append? Dunce. Besides, when did you miss this? *dhtml:Can't you understand simple written English? He said Once the site loads. You should understand something before trying to find flaws. Talk about "people at your level" when you can't comprehend simple English. |
Nooo.
|
Waiting for this news to slide into oblivion in a weeks time. |
Damn. |
I haven't found a need to root. Heck, all I do with my android is calls, GPS, and when I'm testing my apps, or seeing whats up via DDMS. |
![]() |
How is this one news? |
Unconfirmed. No other news agency is reporting this. |
Beaf:Cookies? How is that even possible for saving that much of data? Seems not practically feasible see the RFC specification; Practical user agent implementations have limits on the number andhttp://www.ietf.org/rfc/rfc2109.txt |
![]() |
Tabon:You're drunk. |
Beaf:Proxies can hide you. |
ekt_bear:From my understanding; there is only one array in use as stated by the question; Here as for (A) Design an algorithm that will output a list B that is a rearrangement of A (i.e., permutation) such that: 1. The last element the new array B is the same as the last element of A. Call this pivot element x. The main array in use, is the same array as the final array; So the entire question requires 2 arrays; the stipulated and the outputted; As for no sorting, the bleep? I'd like someone to do that and post the code. For (B) hmm. Feasible. |
@OP Post your code; let's see if an improvement can be made. |
Input array : [2, 0, 3, 4, 3, 0, 2, 1, 4, 2] Outputted array : [0, 0, 1, 3, 3, 4, 4, 2, 2, 2] ![]() |
The first one is basic arithmetic progression. That, n/2(na+(n-1)d); thingy. Second one is 2 na? ![]() As for the most recent; check this; is it correct? Just a quick implementation. Without using a temporary array; [color=#CCCCCC]package[/color] algorithms; [color=#CCCCCC]import[/color] java.util.Arrays; [color=#00BB00]public[/color] [color=#00BB00]class[/color] NL { [color=#00BB00]public[/color] [color=#00BB00]static[/color] [color=#00BB00]void[/color] main(String [] args){ [color=#00BB00]int[/color] [] arr = {[color=#FF0000]2[/color],[color=#FF0000]0[/color],[color=#FF0000]3[/color],[color=#FF0000]4[/color],[color=#FF0000]3[/color],[color=#FF0000]0[/color],[color=#FF0000]2[/color],[color=#FF0000]1[/color],[color=#FF0000]4[/color],[color=#FF0000]2[/color]}; [color=#00BB00]int[/color] arrlength = arr.length; [color=#00BB00]int[/color] [] ind = {[color=#FF0000]3[/color],[color=#FF0000]7[/color],[color=#FF0000]3[/color]}; [color=#00BB00]int[/color] [] fin = [color=#FF9D00]new[/color] [color=#00BB00]int[/color] [[color=#FF0000]10[/color]]; [color=#00BB00]int[/color] x = arr[arrlength - [color=#FF0000]1[/color]]; fin[fin.length-[color=#FF0000]1[/color]] = arr[arrlength-[color=#FF0000]1[/color]]; Arrays.sort(arr); [color=#FF9D00]for[/color]([color=#00BB00]int[/color] i = [color=#FF0000]0[/color]; i<arrlength; i++){ [color=#FF9D00]if[/color]( arr[i] < x ){ fin[i] = arr[i]; [color=#FF9D00]continue[/color]; } [color=#FF9D00]if[/color]( arr[i] > x){ fin[i-ind[[color=#FF0000]0[/color]]] = arr[i]; } } [color=#FF9D00]for[/color]([color=#00BB00]int[/color] j = ind[[color=#FF0000]1[/color]]; j<arr.length; j++){ fin[j] = x; } System.out.println(Arrays.toString(fin)); } } The entire thing is easier with a sorted array. |
BS. Your sponsorship is solely within Nigeria. |
I just remembered this thread, was the OP really serious? Damn |
Fork this useless and imbecilic thread. https://cdnl.complex.com/assets/images/lists/hip-hop-gifs/7-Hat-Spin.gif |
odibenson:It's from facebook http://www.facebook.com/android/posts/10150261456720909 |
mxxpunkxx: Why? Java is not difficult. |
1 2 3 4 5 6 7 8 ... 10 11 12 13 14 15 16 17 18 (of 257 pages)



