Chat:World/2021-11-21
Medoo: Oooh, i see some sort of an aphorisms going on here
Medoo: You want be awaken boy? You sleep first
Medoo: and one more
Medoo: Loving yourself is a pregnancy symptom
DouglasBolden: HAHAHA
DouglasBolden: From the moment that you are born, you are brought into an inevitable death. Pretty scary, really.
chenhaorantianjiayi: You every 60 seconds, breathing life is reduced by 1 minute
DialFrost: anyone willing to help me in puzzles? :)
Andriamanitra: go ahead and ask if you have some questions, we can't know if we can help if we don't know what the problem is
DialFrost: well im stuck with the easiest puzzle temperature
DialFrost: :(
DialFrost: http://chat.codingame.com/pastebin/af2f73ec-5bdd-4ddb-9b2a-08c7dde09aed
DialFrost: this is what i have rn
DialFrost: test case 04 fails
Andriamanitra: seems like you just need to handle the case where you have the same temperature both positive and negative
DialFrost: ye
DialFrost: i cant figure out how
Andriamanitra: use < instead of <= and have another branch deal with the == case
Andriamanitra: is the simplest fix
DialFrost: what do i have to put in the == branch
DialFrost: :/
Andriamanitra: pick the larger of the two to be a
Andriamanitra: if i remember correctly that it always wanted the positive one
DialFrost: its the same as this right
DialFrost: http://chat.codingame.com/pastebin/e489a52a-5b4d-47ad-bf2b-6e6706555c4c
Andriamanitra: no, it could also be t that is negative
DialFrost: ?
DialFrost: my method works 100%
DialFrost: but urs is shorter thx Andriamanitra!
Andriamanitra: oh right, the case where t is negative doesn't matter because you only want to replace negative with positive
Andriamanitra: "-" in str(a) is very weird way to do essentially a < 0
DialFrost: ye lol
DialFrost: thx now my code is less than 100 bytes long!
chenhaorantianjiayi: hello?
DialFrost: hi
chenhaorantianjiayi: hi
chenhaorantianjiayi: :grinning:
Andriamanitra: i have 73 in python and 44 in ruby
DialFrost: er Andriamanitra a<0 or t>a doesnt work
DialFrost: 73!
DialFrost: how
Andriamanitra: i didn't use a loop, i used the built-in functions instead
Andriamanitra: but it gets complicated :D
DialFrost: bruhh
DialFrost: 44 in ruby
DialFrost: bruh
DialFrost: thats like top 50
2s: Tena matotra ve ity andarna Andriamanitra ity le!!!
2s: *anarana
DialFrost: andriamanitra
DialFrost: my code doesnt work the validator caught it :|
DialFrost: http://chat.codingame.com/pastebin/defaf093-73d5-4b00-bef3-3f388eee55cd
DialFrost: welp
DialFrost: oh wait nvrm
DialFrost: it works now
DialFrost: can anyone help shorten my code? (if possible)
DialFrost: its at 98
DialFrost: for chuck norris how do you find how many "1" or "0" are in a row
DialFrost: like in "11000110000001000" i need to somehow find a way to see that there are 2 "1" in a row
DialFrost: nonono
DialFrost: thats counts the entire substrting
DialFrost: i want "in a row"
DialFrost: consecutively
Andriamanitra: instead of checking if abs(t) == abs(a) you could check if-t==a
Andriamanitra: to save at least a couple characters
Andriamanitra: for big savings you'd probably need to go for a completely different approach
DialFrost: tru
Andriamanitra: or actually even better is if t-a because 0 is falsey in python
Andriamanitra: oh wait you'd need a "not" in there nvm
Andriamanitra: in another language !(t-a) would be short but in python not so much
DialFrost: ty
DialFrost: now im down to 91
bug_sniper: is it efficient to use copy.deepcopy to copy a grid (list of lists) in python?
saberscientist: what is your measure of efficiency
bug_sniper: I'm doing https://www.codingame.com/ide/puzzle/counting-tictactoe
jacek: mhm
bug_sniper: it would be nice to know if deepcopy efficiency could be a factor in how much I can calculate
jacek: python is quite inefficient per se ;v
saberscientist: you need to understand when you would use deep copy
saberscientist: shallow copy will always be faster
saberscientist: because it only copies references
jacek: and deepcopy is used to copy the objects, not their references
saberscientist: but that means that if you change the stuff using that reference that change will reflect in all "copies"
bug_sniper: the inner function calls have to touch a copy of this data and send it to more inner function calls
bug_sniper: so shallow copies won't work
Uljahn: deepcopy could be very slow, i'd better switch to numpy
bug_sniper: I was thinking I may have to do something like y=[i[:] for i in x] to copy the grid from x to y. Does that also work well?
jacek: is i list of objects
jacek: thats still would be refernces
bug_sniper: I mean, if the objects are just characters and numbers then it will work
ZXC01: can anyone help me on legends of code and magic?
Xzoky174: hello
DialFrost: hi guys i used this code in power of thor but why does it print "WS" instead of "SW" and "ES" instead of "SE"
DialFrost: http://chat.codingame.com/pastebin/6721be80-f259-43e1-a6a4-1dbb9b98aeb2
Miki09: Thats because u r printing v+z but you should print z+v
DialFrost: ooooooooooooh
DialFrost: tysm
PATTRIM: guys, can u help me in Mad Pod Racing
PATTRIM: im in bronze league and i can beat the boss but still is 30000 place
PATTRIM: this is my code in python
PATTRIM: http://chat.codingame.com/pastebin/0b7f201d-f290-4591-91e3-b766c6eca3c0
PATTRIM: plz tell me how to improve
ankan2526: https://www.codingame.com/clashofcode/clash/207953001095f8e596b57905f7a91787bbbbb87
jacek: my ball gathering bot finally paid off https://www.codingame.com/share-replay/592145639
jacek: i just now noticed why it didnt work....
jacek: for inputs here i used something like (ball.x - car.x) / 3000, but they were are ints... changing to 3000.0 fixed it
DomiKo: I guess something like -Wconversion
DomiKo: should be your friend from now
jacek: on CG?
DomiKo: but you can compile code on your computer
jacek: :O
jacek: i use punchcards
Sandborg: Is c++ bugged or something? Often i've getting the correct result printed out, but the system says it didn't find an answer
Adsonmin: maybe endl is missing
Sandborg: Hmm maybe, gonna keep that in mind when it happens again
Sandborg: Thanks
Adsonmin: or you wrote just one part of a solution
Sandborg: No, all tests were correct, but that is not the problem, the problem is that it can't see my output
struct: so off by 1 error jacek?
vaeng: I tried my first clash contribution. Do you think it's too complex for a clash? https://www.codingame.com/contribute/view/7680866d694129c45020aee9abbb96004afd
surgutti: yay legend on csb
BlaiseVonEbuthIV: There's no such thing.
surgutti: csb will always be csb
BlaiseVonEbuthIV: Disney will pursue you for copyright violation! :scream:
Westicles: oh dear. they don't like my drug puzzle
BlaiseVonEbuthIV: Told you approvers were not real French...
surgutti: wait what. cg changed the name cause disney took it?
BlaiseVonEbuthIV: Not really. They just anticipated any copytight problem they could have now they're americans...
BlaiseVonEbuthIV: *copyright
surgutti: so now every past contest will be 'mad'?
BlaiseVonEbuthIV: No. But changes are already made, take a look to the awful new names...
surgutti: Line Racing?
surgutti: wtf
BlaiseVonEbuthIV: They deleted visuals too.
5DN1L: Is Mad Pod Racing named after MadKnight?
BlaiseVonEbuthIV: No.
Wizard-Dude: how do you find your position of your pod racer in the bronze league, in mad pod racer
Manchi_o6o7: Guys, can someone help me with a modularization problem. How can I put all headers in one file in C++. So I do not need to include for example string.h in all cpp files.
BH-Empire: How do you do x, y, position in python 3??? (I'm a complete beginner)
BlaiseVonEbuthIV: You include it in the file in which you use it. I don't get your question Manchi_o6o7...
Manchi_o6o7: If I use it in more files
Manchi_o6o7: #include <string> will be used in all my cpp files
Manchi_o6o7: can I make some header to hold all the includes
BH-Empire: guys please how do you do mad pod racing python
BlaiseVonEbuthIV: You learn python first.
BH-Empire: Ok...?
BlaiseVonEbuthIV: Manchi_o6o7 you have to include it in every files that need it. If you have multiple recuring includes you can of course put them all in a file, but you'll have to include this one everywhere.
Manchi_o6o7: so #include "allHeader.h"
Manchi_o6o7: in all my cpps
Manchi_o6o7: and allHeader contains everything I need
BlaiseVonEbuthIV: You can do this. Te compiler will not include anything more than one time anyway.
BlaiseVonEbuthIV: But I personally think it's clearer to explicitely list all the libs used in a specific file.
BlaiseVonEbuthIV: BH-Empire; it's not to be rude. But this site is not for comple beginners. You need the basics first.
BlaiseVonEbuthIV: *complete
surgutti: #include <bits/stdc++.h> will include all things that you need
BlaiseVonEbuthIV: Yeah... But outside of a code golf context it's not really a good idea...
eulerscheZahl: a lot of competitive programmers do that. and also define their macros so that they have to type less for a simple for-loop
**eulerscheZahl hates that
eulerscheZahl: e.g. what's "vll" it's a vector<long long> but no one outside of the competitive community can read that
BlaiseVonEbuthIV: Code golf was too precise. Let's say in non-competitive programming.
eulerscheZahl: maybe i'm just not too much into those 2h contests to appreciate it
surgutti: im something doing #define int long long
BlaiseVonEbuthIV: I hate speed contest...
Westicles: uh oh, the friends group think my drug solution is wrong
eulerscheZahl: puzzle link i'll try it
Westicles: vhttps://www.codingame.com/training/medium/drug-interactions
Westicles: https://www.codingame.com/training/medium/drug-interactions
eulerscheZahl: very hyper text transfer protocol? :smirk:
struct: too easy, should be a clash
struct: :)
BlaiseVonEbuthIV: Go delete account.
struct: why? was another escape confirmed?
Wontonimo: is there an adhdttp:// also ?
eulerscheZahl: timeout on test 4 :(
Westicles: well, good thing it was moved from easy to medium
eulerscheZahl: i solved it in stupid now
eulerscheZahl: while (sw.ElapsedMilliseconds < 900) result = Math.Max(result, Solve(drugs.ToList()));
eulerscheZahl: repeatedly trying random stuff, taking the best
eulerscheZahl: it works by chance but doesn't give a proven best
struct: fix it Westicles
eulerscheZahl: i did the same on harmless rooks
Westicles: well, my code tests them all so it should be doable
eulerscheZahl: probably my code was just too inefficient
eulerscheZahl: cloning lists all over the place
Westicles: well, you did spend all of 9 minutes on it :P
eulerscheZahl: that was the core of my failing attempt:
eulerscheZahl: http://chat.codingame.com/pastebin/bd36fc3c-a376-4cb5-b0fb-58ace402044b
eulerscheZahl: my solution is private again it seems
eulerscheZahl: https://imgur.com/a/OxcuGJy the "published" button is a lie!
BlaiseVonEbuthIV: All the site is a lie.
eulerscheZahl: which wouldn't invalidate my statement :)
BlaiseVonEbuthIV: Of course. I simply generalize.
Westicles: blaise, tell them euler solved it in 3 minutes
BlaiseVonEbuthIV: Did he?
Westicles: well, okay maybe 10 at the most
Westicles: I think I'll move it back to easy
struct: I dont think you should use euler as a benchmark
BlaiseVonEbuthIV: Btw, if I understood correctly, the discussion was more about the constraints validity, and that your solution couldn't work on valid extrem tests.
Westicles: hmm, I think I tried it up to 150 words and it still worked
Westicles: I don't get all the whining... it is a fine puzzle.
jacek: but it promotes drugs overdose
Westicles: I think perhaps they are just hidebound. They don't like trying to solve puzzles that challenge them, or take them a little outside their comfort zone. Sad, really.
jacek: is that why nobody likes :notebook: :soccer:?
Westicles: I'm afraid so
jacek: :scream:
JBM: it could use a more precise definition of what's meant by letters in common
Westicles: Maybe... the example should make it clear, better than adding a bunch of legalistic text
Westicles: you mean upper/lowercase? or you thought two matching a's should count as one for some reason?
JBM: could have read it wrong, but for both interpretations (I found) the answer is 2, though there are 1 or 2 possibilities
JBM: first one is still the same letter (To me)
JBM: wording to understand the second one is: “Xanax and Viagra have "A" in common”
Westicles: You seem to have unusual interpretations on these things. I remember you hated how the walls worked on 5D chess as well
JBM: i don't remember 5d chess, so that's that
Westicles: sorry, 5D Chests
Westicles: You made a video on it :P Anyhow, we can add whatever text is needed to clarify
JBM: for the first one (not for me, but I know people who fet it), “Drugs are case-insensitive” anywhere, e.g. Constraints
JBM: for the second one, probably best to say what's compatible with what in the example *and how*
JBM: I don't really see streaming as “making a video”---it's mostly improvised, fire and forget
Westicles: okay, I tried to clear up the description. thanks!
JBM: "the same letter can match more than once" solves a problem but creates another :D
Westicles: oh dear
JBM: lol just saw you worked for ocp
JBM: how's that valid and the rejected team turtle
jacek: oO
Westicles: I never understood the Turtle thing.
Westicles: One more vote needed for the DAWG, that's the one I thought might have a little drama
Coderboi270: ayo how do i do coders strike back
Wontonimo: i can help you with that
Wontonimo: how far have you gotten?
Coderboi270: to the first boss race thin
Wontonimo: have you gotten your pod to correctly aim at the checkpoints?
Coderboi270: yes
Wontonimo: cool
Wontonimo: okay, have you discovered you can change the thrust?
Coderboi270: yes
Coderboi270: but i dont know what to do
Wontonimo: let me take a look at a replay of your bot ... give me 2 min
Wontonimo: I dont' see you in the leaderboard
Coderboi270: oh
Wontonimo: can you share a replay please
Coderboi270: ye
Wontonimo: you can click on the 3dot K looking thing
Wontonimo: right beside the gear
Wontonimo: in the replay window
Wontonimo: then send me the url of the new tab that opens
Coderboi270: https://www.codingame.com/replay/592228560
Wontonimo: what league are you in?
Coderboi270: i dont know
Coderboi270: how do i check
Wontonimo: it does not look like you have discovered how to change the speed. your pod is only going at 50
Wontonimo: and it could go up to 100
Wontonimo: try that and submit
Coderboi270: ok
JBM: no need to understand it to witness discrimination
Wontonimo: wrong chat channel JBM
Wontonimo: although, you are correct none the less
Westicles: but Zorg works for turtle...
69razer69: whats the condition to get cp from optimazation
Wontonimo: let me know when you are able to increase your speed to 100 instead of 50 then send me another replay Coderboi270
Coderboi270: i did it
jacek: :tada:
Wontonimo: submit it and then send me a replay
Wontonimo: oh, look, you are now on the leaderboard
Coderboi270: ye
Wontonimo: you are in wood 2
69razer69: what are u playing guys
Wontonimo: mad pod racing
69razer69: oh i forget abt it
Wontonimo: are you gonna send a replay Coderboi270? I can make more suggestions if you do
Coderboi270: uh
Coderboi270: of what
69razer69: oh i was on the driffting part
69razer69: wontonimo can i dm u later
BlaiseVonEbuthIV: :turtle: :(
Coderboi270: https://www.codingame.com/replay/592232595
Wontonimo: okay cool. If you notice your pod speeds past the checkpoint
Coderboi270: ok
Wontonimo: if you could somehow detect when you are close and reduce your thrust
Wontonimo: do you know how to calculate distance between two points?
Coderboi270: no
Wontonimo: if you have x1,y1 and x2,y2 the distance is
Coderboi270: um I dont know
Wontonimo: square_root( square(x1-x2) + square(y1-y2) )
Coderboi270: oh
Wontonimo: you can use that formula to find distance between 2 points
Coderboi270: k
Wontonimo: with a quick google search you can even find how to do it in the language you are programming
Coderboi270: im still confused
Wontonimo: oh
Wontonimo: what about
Coderboi270: everything
Wontonimo: well, first there was a big bang
Wontonimo: and electrons and protons were flying freely
Wontonimo: then things cooled down enough for them to collect into atoms
69razer69: lol
Coderboi270: bruh
Wontonimo: i'm kidding
jacek: oO
69razer69: that was a good one
Wontonimo: let's start with one thing that is confusing
Coderboi270: everything
Wontonimo: ok. how much experience do you have with programming? Do you know about arrays and functions?
Coderboi270: no i just started last night
69razer69: aw
Coderboi270: what
69razer69: u started what
Schwase: pod racing is easy, just make a program that evaluates literally every possible move for each turn and determine which one yields the least time to complete the race, duh
Coderboi270: wha
Schwase: sorry dont take that seriously, its a joke
69razer69: i mean did u started programming last night or maths
Schwase: maybe try starting with something other than pod racing would be a good idea
Coderboi270: like what
69razer69: i know wontonimo gonna teach you some good stuff
Coderboi270: ok
69razer69: but u need to able to follow alogn with him
Coderboi270: ok
69razer69: and that requires some geometry knowldge (vectors-distances) and a basic programming skills
Coderboi270: oh
Wontonimo: hey Coderboi270, what programming language are you learning?
Coderboi270: python
NglQ: Guys I'm struggling a bit with finding the position of Thor
NglQ: Just an hint is sufficent
JBM: hint: you're the only one making it change
Uljahn: you are given the initial position, then you choose a direction and update the position yourself in the loop
Westicles: click on hints on the left panel
Wontonimo: see if you can find some intro to python videos or tutorials online Coderboi270. There is this https://www.hackinscience.org/exercises/ for practicing
Wontonimo: i've gotta go. i'll be back in 40 min
Coderboi270: ok thank
Coderboi270: ima get off i will get back on later
69razer69: how to open closed coc chat
Wontonimo: if you lose the link, it's lost
Westicles: unless you remember the name, you can /join
Westicles: I think?
Schwase: maybe not, i doubt that ALL of those chats get cached? seems like overkill
Schwase: easy enough to find out, itll only take a few minutes, ill report back
jacek: nothing happens in those chats anyway
Schwase: crap
Schwase: i had copied the name of the channel but overwrote my pastebin when i was doing the clash
Schwase: lol
TassosCodes: Hey there. Is there an option to see my solutions on the problems I already solved?
Schwase: oh yeah it works
Schwase: wait...
Schwase: coc180514620802
Schwase: can you join if you didnt do the clash?
Schwase: someone else try joining that channel
Wontonimo: just go here #coc180514620802
Wontonimo: or type /join coc180514620802
Schwase: oh i didnt know you can link channels like that
Wontonimo: you have to have enough privilege
Wontonimo: I can sell you channels for 0.01 bitcoin each
Wontonimo: okay okay .... how about 0.003 bitcoin each
Schwase: hmmm
Wontonimo: you drive a hard bargin Schwase ... 0.001 bitcoin each
Schwase: ok
Schwase: deal
Schwase: i feel obligated to inform you i will be converting the threads into NFTs
Wontonimo: your truthfulness is foolishly forthcoming, for I have preemptively converted this thread to an NFT
Wontonimo: hmm, i find the ui here lacking. In addition to "follow" button I'd like a "stalk" and "hunt" button
Schwase: you know how we have a weird obsession with "ruined art"? I feel like the more meta this conversation gets the more "ruined art"-esque this NFT would become therefore increasing its value
Dren: They don't make those buttons because it would take all the fun out of the hunt
Wontonimo: lol x 2
jacek: oO
Schwase: is it cheating if i get my own puzzle in clash and go to the contribution and copy my answer lol
ThatOneRogueDude: :squid: game
ThatOneRogueDude: shut Tuan your opinion doesn't matter
ThatOneRogueDude: UwU dad pls I require sufficient nutrients as I am a growing kitten I desire milk as cats drink milk
Wontonimo: no spamming
WillNguy: if you are under gold in valorant you cannot talk
Wontonimo: that's a fast way of getting kicked or banned
ThatOneRogueDude: Have you heard of jandice?
ThatOneRogueDude: The streamer?
Schwase: its all the same person by the looks of it
Schwase: or a group of kids killing time while they have a class together lol
Loli_yummy: we need overflow 2
TyroneEatChicken: im coming out the closet
Sheeeeeeeeeeeeeeeeeeeeeeeeesh: yes
TyroneEatChicken: she thought i was gay
TyroneEatChicken: :new_moon_with_face:
Westicles: you guys should be out protesting. get out of here
TyroneEatChicken: cant i like u
ThatOneRogueDude: nah dude we ain't a class
ThatOneRogueDude: I haven't met these men ever in my life
ThatOneRogueDude: idk who they are
Westicles: your country is under martial law, go do something about it
Loli_yummy: im a woman EXCUSEME
TyroneEatChicken: shut u know me dylan
ThatOneRogueDude: dylan da hell
ThatOneRogueDude: how do you know my step bro
Loli_yummy: look at your profile
Loli_yummy: i dont have a dad i got 2 mums
Sheeeeeeeeeeeeeeeeeeeeeeeeesh: :scream_cat:
Stephen20: yo can any of you poggers recommend me a python website??
Stephen20: thx for spreading the truth man
sdssgfd: unless u make money or is rich out of it then..hehe\
Sheeeeeeeeeeeeeeeeeeeeeeeeesh: sa
sdssgfd: work for apple and develop updates, sell and u make millons
Stephen20: i work for google bro
Stephen20: i get paid 2 billion dollars
Stephen10121: the website i recommend for python is https://www.python.org
Wontonimo: stop spanning. be respectful, generally keep the talk about coding or coding game
Stephen20: stephen we have the same name
Wontonimo: mods are here
Wontonimo: they kick and ban pretty liberally
ThatOneRogueDude: Mods are pretty cool
ThatOneRogueDude: I am a discord mod
Stephen10121: Wontonimo how did you get to level 31?
ThatOneRogueDude: We are not the same
Stephen20: Stephen10121 I like ur name :)
sdssgfd: how do yall actually understand code language
Stephen10121: Hey your name is pretty cool too
Stephen20: i do this as hw guys
Wontonimo: doing a lot of puzzles and making contributions Stephen20
Stephen20: i'm better than all of u
ThatOneRogueDude: I mean I make games
sdssgfd: yall be like "anyone speak javaScript"
Stephen10121: I only found out about puzzles like a week ago
ThatOneRogueDude: bruh java is good
ThatOneRogueDude: I will eat your pancreas
Stephen10121: I know more kotlin than java
Stephen10121: const tacos
Wontonimo: take this challenge : all you new people without an image for your account : do this puzzle https://www.codingame.com/training/easy/the-descent
Stephen20: let python = the best langauge
ThatOneRogueDude: already did it
Stephen20: does anybody speak python here?
Stephen10121: thanks wontonimo
ThatOneRogueDude: I mean I learnt HTML first
Stephen20: print string well that's cool
Noahgamebro6: :flag_ao: good flag
ThatOneRogueDude: then worked to c#
Wontonimo: okay here is another : considered very easy https://www.codingame.com/training/easy/fax-machine
ThatOneRogueDude: will try it l8r
ThatOneRogueDude: man gonna get banned
sdssgfd: Wontonimo do u have anything for very very new beginners
ThatOneRogueDude: Mods are active
ThatOneRogueDude: Super idol is a good song ngl
Stephen10121: Apperently I already did
Stephen10121: the "The Decent" puzzle
Wontonimo: not here sdssgfd , but this may be helpful https://www.hackinscience.org/exercises/
Westicles: you kids might enjoy looking at cat videos on YT
Wontonimo: Noahgamebro6 , please stop spamming. Seriously.
Noahgamebro6: :flag_ao::flag_ao::flag_ao::flag_ao:
ThatOneRogueDude: m1 is better
ThatOneRogueDude: kid is asking to get banned
Noahgamebro6: :flag_ao::flag_ao:
Stephen10121: Its an alt
Stephen10121: unless ip ban is a thing here
ThatOneRogueDude: I am not an alt
Noahgamebro6: :flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao:
Noahgamebro6: still no ban dam
Noahgamebro6: even roblox could do better
Stephen10121: whats roblox
Noahgamebro6: :flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao::flag_ao:
Loli_yummy: http://chat.codingame.com/pastebin/f08faa66-b28d-426c-8b12-feec894ffd8b
Stephen10121: i think my little sister mentioned something about roblox. do u play it too?
Loli_yummy: hot - single looking for a boyfriend ! ! ! www.hotwoman.xxx 5km away from you! :kissing_heart:
ThatOneRogueDude: Y'all needa drink some milk
TyroneEatChicken: :nose_tone5:
Noahgamebro6: :clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown:v:clown::clown::clown::clown::clown::clown::clown::clown::clown::clown:v:clown::clown::clown::clown::clown::clown::clown:v:clown:v:clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown:v:clown::clown:
TuanNguyen130: http://chat.codingame.com/pastebin/54af3c57-03ba-4b04-abc2-dcb80490b13a
BeRuN: Hot-Milfs in your area www.hotmilf.xxx
Noahgamebro6: :clown:vv:clown::clown::clown::clown::clown::clown::clown:v:clown::clown::clown::clown::clown::clown::clown::clown:vvv:clown::clown::clown::clown::clown:v:clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown:
TuanNguyen130: :clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown::clown:\
Loli_yummy: Big Black woman for noah 5km away get it now while u still can!
IceDragon18: 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
AntiSquid: you stop or ban
Loli_yummy: hot - single BLACK looking for a boyfriend ! ! ! www.hotwoman.xxx 5km away from you! :kissing_heart:
Noahgamebro6: :poop::poop::poop::poop::poop::poop::poop::poop::poop::poop::poop::poop::poop:vvvv:poop:v:poop::poop::poop::poop::poop::poop::poop::poop::poop::poop:: http://chat.codingame.com/pastebin/5cff6dce-7509-41bc-bc2b-494a7d9a090d
Noahgamebro6: :poop::poop::poop:v:poop::poop::poop:v:poop::poop::poop:v:poop::poop::poop::poop:
WillNguy: the shit is the same colour as ur rank
WillNguy: ur rank is also the name of that colour
WillNguy: ur skin colour is the same
Mundgus: Please, stop the spam guys
ThatOneRogueDude: 01100011 01101000 01101001 01100011 01101001 01101011 01100101 01101110 00100000 01101110 01110101 01100111 01100111 01100101 01110100 01110011 00001010
ThatOneRogueDude: translate it
BeRuN: http://chat.codingame.com/pastebin/b659d1e3-0cf7-4454-b862-114f2d2a5c99
Wontonimo: really, we don't want a rash of bans
AntiSquid: you think you can reason with them ?
sdssgfd: this why ya'll get no girls
AntiSquid: if so they'd just stop
Wontonimo: i try AntiSquid, i really try
Wontonimo: i just got a private message from Noahgamebro6 of spam
Coderboi270: hi
AntiSquid: hi Coderboi270 how are you
Wontonimo: after a long break, i'm happy to report that I've finally published 2 more contributions
Coderboi270: oh
Wontonimo: did you try out any intro coding videos or tutorials?
Coderboi270: no
Deaddrink: there are tutorials>
Coderboi270: i took a nap
Wontonimo: on line, yes Deaddrink. If you google "coding tutorials" you'll find them
AntiSquid: all from australia ? isn't everything locked down into oblivion over there ?
AntiSquid: well i kind of understand their frustrations now, wish you good health kids
Schwase: omg i just learned something amazing
Coderboi270: what
Schwase: you can use input(ARG) to print ARG in code golfing
Schwase: thats amazing
Stephen10121: Wontonimo, I liked your fax puzzle. Was fun. Gave 5 stars.
Wontonimo: oh thanks
Wontonimo: i really liked Mars lander episode 1
Wontonimo: https://www.codingame.com/training/easy/mars-lander-episode-1
Wontonimo: try it out if you like BUT turn off sound
Wontonimo: before the crash blows out your ears
Wontonimo: gotta go
Wontonimo: :wave:
Stephen10121: thanks
Coderboi270: can i still get some help with the mad pod racing
Wontonimo: yeah, i'll be back in 2 hours if you are around then
Coderboi270: ok
Wontonimo: if anyone else know about the mad pod race and is willing to help Coderboi270 out, go ahead. don't wait for me
AntiSquid: Coderboi270 http://files.magusgeek.com/csb/csb_en.html
Coderboi270: thanks
PATTRIM: how to do u solve the sum of the diagonals by wyenat?
PATTRIM: https://www.codingame.com/ide/puzzle/sum-of-spirals-diagonals
DialFrost: AntiSquid the link you sent
DialFrost: was it for gold league or smh
Wontonimo: :wave: Coderboi270
Wontonimo: you still around?
Thorcode: hi wontonimo
Wontonimo: hey hey Thor!
Wontonimo: what are you up to?
Thorcode: this puzzle of the week
Thorcode: and marslander 2
Wontonimo: nice
Wontonimo: puzzle of the week seems funky
Wontonimo: it's interesting that the coordinates are not provided for all the robots
Wontonimo: seems like there isn't much point in moving in that game
Thorcode: yep
Wontonimo: i see one of the 'top' strategies is to move your tanks such that they form a checkerboard pattern
Wontonimo: a NN solution to this seems like it would do the best.
ZXC01: http://chat.codingame.com/pastebin/f3abf3a1-0b4d-4141-9e06-1b047d00a88d
ZXC01: this is my code for power of thor.
Coderboi270: what
Wontonimo: I've looked at your code
Wontonimo: tell me what it is trying to do
ZXC01: go to the light of power?
Wontonimo: haha of course
Wontonimo: but, looking at your code I'm a bit puzzled of your strategy
Wontonimo: what is your strategy for getting to the light
Wontonimo: did you know you can go NE, NW, SE, SW ?
Wontonimo: can I propose another way of looking at the problem ?
Wontonimo: it is easier if you instead solve 2 problems
Wontonimo: first solve if moving N/S will get you closer
Wontonimo: if so, save that to a variable. if not, save an empty string to a variable
Wontonimo: next, solve if moving W/E will get you closer
ZXC01: wait so is x or y north and south?
Wontonimo: similarly save that to a variable
Wontonimo: X is W/E , Y is N/S
Wontonimo: read the description for more info
Wontonimo: up and to the left is negative. down and to the right is positive
2010david: https://www.codingame.com/clashofcode/clash/2080626eaf2b2411226412bc7374febbefb3f8b
mod0: a
Schwase: ^
ZXC01: could anyone help me pass wood3 in ultimate tic tac toe?
Wontonimo: maybe stop sending me white space in private chat and I'll help
struct: Theres not even wood 3 on uttt
struct: also stop spamming people
struct: So are you saying he is lying, or is not talking about you?
ZXC01: i did that to clean the chat...
struct: ok, avoid that next time
struct: If I hear any complaint again I will just ban you without a warning
struct: ZXC01 Its all fine now
struct: all is clear
struct: You are not on my ban list anymore
Thorcode: if I get kick one ( by asking ) then if the next time I get warn will I be ban?
struct: no
Wontonimo: sorry for the missunderstanding everyone
struct: I can kick you N times
Thorcode: really
struct: yes, they are different commands
Wontonimo: can only ban once
struct: only 2 commands :)
struct: I think
Wontonimo: it's like sheep, you can sheer sheep many times, but you can only skin them once
Thorcode: only 2 new command for mod
Wontonimo: well, you also have all the other commands too like flip
Wontonimo: (╯°□°)╯︵ ┻━┻
Wontonimo: but, it's not all that powerful
Thorcode: I know about other command
ZXC01: so can you ban a person without warning?
struct: yes
**Thorcode bruh
struct: guidelines say no
struct: but i dont really follow them
struct: unless you are higher than level N
Thorcode: N?
struct: lets say 5
struct: brand new accounts that usually spam are level 3
struct: I usually dont warn them
Wontonimo: and their spam is just the worst
struct: yes
Thorcode: what about level 15
struct: I cant ban accounts higher than level 10
DialFrost: why?
struct: sorry, im joking
Wontonimo: LOL
struct: I can ban anyone except mods
Thorcode: I know that
DialFrost: pfff lol
Thorcode: bc I get kick by uljahh once
DialFrost: *imagine banning another mod*
Thorcode: I ask him to kick me
DialFrost: lol
ZXC01: i didnt know there are mod last time
Thorcode: to know the powerful of that command
Wontonimo: don't do that thor
Thorcode: why?
struct: I can easily misstype
Wontonimo: if you ask to get banned, you just may
Thorcode: he will ban me next time?
struct: no we cant
Thorcode: no
struct: like i said only 2 commands
Wontonimo: there is no unban
Wontonimo: it's like sheep
Thorcode: not really
Wontonimo: wait ... i said that one already
Wontonimo: you can't be skinned twice
ZXC01: i need to buy a revive potion for the sheep then
struct: you can always email cg
struct: and sue the mod
Thorcode: and repport anyone in cg
Wontonimo: hey, my last contribution that got approved just minutes ago pushed me over level 32
Thorcode: but I don't know how that report button do
Wontonimo: yeah me
Wontonimo: :tada:
struct: grats
Thorcode: nice
Thorcode: congratuation
struct: reports go to thibaud
struct: and he handles it
Thorcode: oh ok
Thorcode: he is a user
Wontonimo: he is "The Mod"
Thorcode: ok
Wontonimo: been with CG since the early days. works there. is the face of CG online