Chat:World/2021-11-21

From CG community
Jump to navigation Jump to search

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


Default avatar.png Coderboi270: hi

Default avatar.png Coderboi270: hello

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

Default avatar.png ZXC01: x.count(1)

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

Default avatar.png bug_sniper: is it efficient to use copy.deepcopy to copy a grid (list of lists) in python?

Default avatar.png ZXC01: quite ok

saberscientist: what is your measure of efficiency

Default avatar.png bug_sniper: I'm doing https://www.codingame.com/ide/puzzle/counting-tictactoe

jacek: mhm

Default avatar.png 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"

Default avatar.png bug_sniper: the inner function calls have to touch a copy of this data and send it to more inner function calls

Default avatar.png bug_sniper: so shallow copies won't work

Uljahn: deepcopy could be very slow, i'd better switch to numpy

Default avatar.png 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

Default avatar.png bug_sniper: I mean, if the objects are just characters and numbers then it will work

Default avatar.png ZXC01: can anyone help me on legends of code and magic?

Xzoky174: hello

Default avatar.png ZXC01: hi

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

Default avatar.png PATTRIM: guys, can u help me in Mad Pod Racing

Default avatar.png PATTRIM: im in bronze league and i can beat the boss but still is 30000 place

Default avatar.png PATTRIM: this is my code in python

Default avatar.png PATTRIM: http://chat.codingame.com/pastebin/0b7f201d-f290-4591-91e3-b766c6eca3c0

Default avatar.png 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.

Default avatar.png 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:

Default avatar.png 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

Default avatar.png JBM: i didn't feel it did

Westicles: you mean upper/lowercase? or you thought two matching a's should count as one for some reason?

Default avatar.png JBM: could have read it wrong, but for both interpretations (I found) the answer is 2, though there are 1 or 2 possibilities

Default avatar.png JBM: second one

Default avatar.png JBM: first one is still the same letter (To me)

Default avatar.png JBM: wording to understand the second one is: “Xanax and Viagra have "A" in common”

Default avatar.png JBM: s/understand/feel/

Westicles: You seem to have unusual interpretations on these things. I remember you hated how the walls worked on 5D chess as well

Default avatar.png JBM: i don't remember 5d chess, so that's that

Westicles: sorry, 5D Chests

Default avatar.png JBM: not much more i'm afraid

Westicles: You made a video on it :P Anyhow, we can add whatever text is needed to clarify

Default avatar.png JBM: for the first one (not for me, but I know people who fet it), “Drugs are case-insensitive” anywhere, e.g. Constraints

Default avatar.png JBM: for the second one, probably best to say what's compatible with what in the example *and how*

Default avatar.png 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!

Default avatar.png JBM: "the same letter can match more than once" solves a problem but creates another :D

Default avatar.png JBM: now a and aa match twice

Westicles: oh dear

Default avatar.png JBM: lol just saw you worked for ocp

Default avatar.png JBM: how's that valid and the rejected team turtle

Default avatar.png JBM: how discriminatory

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

Default avatar.png JBM: no need to understand it to witness discrimination

Wontonimo: wrong chat channel JBM

Default avatar.png JBM: doesn't appear so

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

Default avatar.png NglQ: Guys I'm struggling a bit with finding the position of Thor

Default avatar.png NglQ: Any idea?

Default avatar.png NglQ: Just an hint is sufficent

Default avatar.png JBM: hint: you're the only one making it change

Default avatar.png JBM: so blame yourself

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

Default avatar.png TassosCodes: Hey there. Is there an option to see my solutions on the problems I already solved?

Default avatar.png TassosCodes: Im a noob

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

Default avatar.png ThatOneRogueDude: amoogus

Default avatar.png ThatOneRogueDude: :squid: game

Default avatar.png ThatOneRogueDude: is sussy

Default avatar.png TuanNguyen130: nooo

Default avatar.png ThatOneRogueDude: shut Tuan your opinion doesn't matter

Default avatar.png Noahgamebro6: hi daddy

Default avatar.png ThatOneRogueDude: uwu

Default avatar.png Noahgamebro6: hi kitten

Default avatar.png ThatOneRogueDude: UwU dad pls I require sufficient nutrients as I am a growing kitten I desire milk as cats drink milk

Default avatar.png Noahgamebro6: lmaoooo

Default avatar.png ThatOneRogueDude: :cat:

Default avatar.png ThatOneRogueDude: :cat:

Default avatar.png ThatOneRogueDude: :cat:

Default avatar.png Noahgamebro6: :joy:

Wontonimo: no spamming

Default avatar.png WillNguy: if you are under gold in valorant you cannot talk

Wontonimo: that's a fast way of getting kicked or banned

Default avatar.png ThatOneRogueDude: Damn

Default avatar.png ThatOneRogueDude: srry man

Default avatar.png ThatOneRogueDude: Have you heard of jandice?

Default avatar.png ThatOneRogueDude: The streamer?

Default avatar.png Overanalysis: m

Default avatar.png ThatOneRogueDude: mm

Default avatar.png Loli_yummy: sup

Default avatar.png ThatOneRogueDude: yum yum yum

Default avatar.png Loli_yummy: yes

Default avatar.png Deaddrink: roggenrola

Default avatar.png Overanalysis: bobby

Schwase: its all the same person by the looks of it

Default avatar.png Overanalysis: sure buddy

Schwase: or a group of kids killing time while they have a class together lol

Default avatar.png Loli_yummy: we need overflow 2

Default avatar.png TyroneEatChicken: im coming out the closet

Sheeeeeeeeeeeeeeeeeeeeeeeeesh: yes

Default avatar.png Loli_yummy: im gay

Default avatar.png TyroneEatChicken: she thought i was gay

Default avatar.png Deaddrink: congrats

Default avatar.png Loli_yummy: but youe les

Default avatar.png Loli_yummy: :crocodile:

Default avatar.png TyroneEatChicken: :gorilla:

Default avatar.png Loli_yummy: :snowman2:

Default avatar.png Loli_yummy: cum

Default avatar.png TyroneEatChicken: :new_moon_with_face:

Default avatar.png Loli_yummy: :eagle:

Default avatar.png Loli_yummy: AMERICA

Westicles: you guys should be out protesting. get out of here

Default avatar.png Loli_yummy: shut up

Default avatar.png TyroneEatChicken: cant i like u

Default avatar.png ThatOneRogueDude: nah dude we ain't a class

Default avatar.png Loli_yummy: :bee:

Default avatar.png ThatOneRogueDude: I haven't met these men ever in my life

Default avatar.png ThatOneRogueDude: or women

Default avatar.png ThatOneRogueDude: idk who they are

Westicles: your country is under martial law, go do something about it

Default avatar.png Loli_yummy: im a woman EXCUSEME

Default avatar.png ThatOneRogueDude: NOOOo

Default avatar.png TyroneEatChicken: shut u know me dylan

Default avatar.png ThatOneRogueDude: dylan da hell

Default avatar.png Loli_yummy: your ugly

Default avatar.png ThatOneRogueDude: how do you know my step bro

Default avatar.png Loli_yummy: look at your profile

Default avatar.png Loli_yummy: your basic

Default avatar.png ThatOneRogueDude: your dad is

Default avatar.png Loli_yummy: i dont have a dad i got 2 mums

Default avatar.png Loli_yummy: :ok_hand:

Default avatar.png TyroneEatChicken: :flushed:

Default avatar.png Loli_yummy: :smirk:

Default avatar.png Loli_yummy: date me

Default avatar.png BeRuN: :flushed:

Sheeeeeeeeeeeeeeeeeeeeeeeeesh: :scream_cat:

Default avatar.png Xytrq: boi

Default avatar.png RichardNgu: gay

Default avatar.png Xytrq: do something

Default avatar.png sdssgfd: yo

Default avatar.png sdssgfd: thats gae

Default avatar.png Stephen20: yo can any of you poggers recommend me a python website??

Default avatar.png sdssgfd: no

Default avatar.png sdssgfd: coding is gae

Default avatar.png Stephen20: it is??

Default avatar.png Stephen20: i had no idea

Default avatar.png Stephen20: thx for spreading the truth man

Default avatar.png sdssgfd: unless u make money or is rich out of it then..hehe\

Default avatar.png Stephen20: what if it's hw

Sheeeeeeeeeeeeeeeeeeeeeeeeesh: sa

Default avatar.png Ur_Lil_Dende: yo

Default avatar.png sdssgfd: work for apple and develop updates, sell and u make millons

Default avatar.png Stephen20: sheeeeeeesh

Default avatar.png Stephen20: i work for google bro

Default avatar.png Stephen20: i get paid 2 billion dollars

Default avatar.png sdssgfd: shit

Default avatar.png sdssgfd: stop the cap

Stephen10121: the website i recommend for python is https://www.python.org

Default avatar.png Stephen20: lol i'm joking

Wontonimo: stop spanning. be respectful, generally keep the talk about coding or coding game

Default avatar.png Stephen20: YOOOO

Default avatar.png Stephen20: stephen we have the same name

Wontonimo: mods are here

Default avatar.png sdssgfd: lol

Default avatar.png ThatOneRogueDude: poggers

Default avatar.png sdssgfd: ok mod

Wontonimo: they kick and ban pretty liberally

Default avatar.png ThatOneRogueDude: Mods are pretty cool

Default avatar.png ThatOneRogueDude: ngl

Default avatar.png Stephen20: I'M THE MOD here

Default avatar.png ThatOneRogueDude: I am a discord mod

Default avatar.png sdssgfd: yel;'['

Stephen10121: Wontonimo how did you get to level 31?

Default avatar.png ThatOneRogueDude: We are not the same

Default avatar.png Stephen20: Stephen10121 I like ur name :)

Default avatar.png sdssgfd: how do yall actually understand code language

Stephen10121: Hey your name is pretty cool too

Default avatar.png ThatOneRogueDude: Uhhh, Yeah?

Default avatar.png Stephen20: i do this as hw guys

Wontonimo: doing a lot of puzzles and making contributions Stephen20

Default avatar.png Stephen20: i'm better than all of u

Default avatar.png ThatOneRogueDude: I mean I make games

Default avatar.png sdssgfd: yall be like "anyone speak javaScript"

Default avatar.png ThatOneRogueDude: As a hobby

Stephen10121: I only found out about puzzles like a week ago

Default avatar.png ThatOneRogueDude: bruh java is good

Default avatar.png ThatOneRogueDude: don't cap

Default avatar.png ThatOneRogueDude: I will eat your pancreas

Stephen10121: I know more kotlin than java

Default avatar.png ThatOneRogueDude: :taco:

Default avatar.png sdssgfd: sure

Default avatar.png Noahgamebro6: not pog

Default avatar.png Stephen20: let tacos = good

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

Default avatar.png Stephen20: let python = the best langauge

Default avatar.png ThatOneRogueDude: :flag_cn:

Default avatar.png TuanNguyen130: bruh

Default avatar.png ThatOneRogueDude: already did it

Default avatar.png ThatOneRogueDude: ;-;

Default avatar.png Stephen20: does anybody speak python here?

Default avatar.png ThatOneRogueDude: yes

Default avatar.png ThatOneRogueDude: I di

Default avatar.png ThatOneRogueDude: hi

Stephen10121: thanks wontonimo

Default avatar.png Stephen20: fluently?

Default avatar.png ThatOneRogueDude: I mean I learnt HTML first

Default avatar.png Stephen20: print string well that's cool

Default avatar.png Noahgamebro6: :flag_ao: good flag

Default avatar.png ThatOneRogueDude: then worked to c#

Wontonimo: okay here is another : considered very easy https://www.codingame.com/training/easy/fax-machine

Default avatar.png ThatOneRogueDude: But yeah

Default avatar.png ThatOneRogueDude: I'

Default avatar.png Stephen20: #PYTHON4LIFE

Default avatar.png ThatOneRogueDude: will try it l8r

Default avatar.png ThatOneRogueDude: ty

Default avatar.png TuanNguyen130: what????

Default avatar.png Noahgamebro6: :flag_ao:

Default avatar.png Noahgamebro6: :flag_ao:

Default avatar.png Noahgamebro6: :flag_ao:

Default avatar.png ThatOneRogueDude: man gonna get banned

Default avatar.png Noahgamebro6: lmao

Default avatar.png sdssgfd: Wontonimo do u have anything for very very new beginners

Default avatar.png ThatOneRogueDude: Mods are active

Default avatar.png ThatOneRogueDude: Super idol is a good song ngl

Stephen10121: Apperently I already did

Default avatar.png Noahgamebro6: :flag_ao:

Stephen10121: the "The Decent" puzzle

Wontonimo: not here sdssgfd , but this may be helpful https://www.hackinscience.org/exercises/

Default avatar.png Noahgamebro6: :flag_ao:

Westicles: you kids might enjoy looking at cat videos on YT

Wontonimo: Noahgamebro6 , please stop spamming. Seriously.

Default avatar.png Noahgamebro6: :flag_ao:

Default avatar.png Noahgamebro6: mb

Default avatar.png Noahgamebro6: :flag_ao::flag_ao::flag_ao::flag_ao:

Default avatar.png Noahgamebro6: :flag_ao:

Default avatar.png Noahgamebro6: :flag_ao:

Default avatar.png ThatOneRogueDude: m1 is better

Default avatar.png ThatOneRogueDude: oml

Default avatar.png Overanalysis: welp

Default avatar.png ThatOneRogueDude: kid is asking to get banned

Default avatar.png ThatOneRogueDude: adios man

Default avatar.png Noahgamebro6: lmao

Default avatar.png Noahgamebro6: :flag_ao::flag_ao:

Default avatar.png ThatOneRogueDude: :taco:

Stephen10121: Its an alt

Default avatar.png ThatOneRogueDude: Wait who?

Default avatar.png ThatOneRogueDude: ;-;

Stephen10121: unless ip ban is a thing here

Default avatar.png ThatOneRogueDude: I am not an alt

Default avatar.png 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:

Default avatar.png Noahgamebro6: still no ban dam

Default avatar.png Noahgamebro6: even roblox could do better

Stephen10121: whats roblox

Default avatar.png WillNguy: no

Default avatar.png WillNguy: bronze 3

Default avatar.png sdssgfd: mod just ban them

Default avatar.png 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:

Default avatar.png sdssgfd: theyre asking for it

Default avatar.png 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?

Default avatar.png ThatOneRogueDude: So anyways

Default avatar.png Overanalysis: bri ish

Default avatar.png ThatOneRogueDude: bri ish?

Default avatar.png Loli_yummy: hot - single looking for a boyfriend ! ! ! www.hotwoman.xxx 5km away from you! :kissing_heart:

Default avatar.png ThatOneRogueDude: No

Default avatar.png Overanalysis: bing chiling

Default avatar.png TyroneEatChicken: :skull:

Default avatar.png ThatOneRogueDude: Y'all needa drink some milk

Default avatar.png ThatOneRogueDude: fr

Default avatar.png Noahgamebro6: :clown:

Default avatar.png TyroneEatChicken: :nose_tone5:

Default avatar.png 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:

Default avatar.png TuanNguyen130: http://chat.codingame.com/pastebin/54af3c57-03ba-4b04-abc2-dcb80490b13a

Default avatar.png TuanNguyen130: :clown:

Default avatar.png BeRuN: Hot-Milfs in your area www.hotmilf.xxx

Default avatar.png 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:

Default avatar.png 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:\

Default avatar.png Loli_yummy: Big Black woman for noah 5km away get it now while u still can!

Default avatar.png Noahgamebro6: lmaoooo

IceDragon18: 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111

Default avatar.png ThatOneRogueDude: 1010101

AntiSquid: you stop or ban

Default avatar.png Loli_yummy: hot - single BLACK looking for a boyfriend ! ! ! www.hotwoman.xxx 5km away from you! :kissing_heart:

Default avatar.png WillNguy: hi noah

Default avatar.png WillNguy: why are you bronze

Default avatar.png 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

Default avatar.png Noahgamebro6: :poop::poop::poop:v:poop::poop::poop:v:poop::poop::poop:v:poop::poop::poop::poop:

Default avatar.png WillNguy: the shit is the same colour as ur rank

Default avatar.png WillNguy: ur rank is also the name of that colour

Default avatar.png WillNguy: ur skin colour is the same

Mundgus: Please, stop the spam guys

Default avatar.png BeRuN: no

Default avatar.png ThatOneRogueDude: 01100011 01101000 01101001 01100011 01101001 01101011 01100101 01101110 00100000 01101110 01110101 01100111 01100111 01100101 01110100 01110011 00001010

Default avatar.png ThatOneRogueDude: translate it

Default avatar.png BeRuN: http://chat.codingame.com/pastebin/b659d1e3-0cf7-4454-b862-114f2d2a5c99

Default avatar.png BeRuN: :gorilla:

Default avatar.png TuanNguyen130: ggg

Default avatar.png Overanalysis: F

Default avatar.png TyroneEatChicken: CUM

Wontonimo: really, we don't want a rash of bans

AntiSquid: you think you can reason with them ?

Default avatar.png 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

Default avatar.png 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

Default avatar.png sdssgfd: how

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

Default avatar.png PATTRIM: how to do u solve the sum of the diagonals by wyenat?

Default avatar.png 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.

Default avatar.png ZXC01: http://chat.codingame.com/pastebin/f3abf3a1-0b4d-4141-9e06-1b047d00a88d

Default avatar.png ZXC01: this is my code for power of thor.

Default avatar.png ZXC01: idk wheres wrong?

Coderboi270: what

Wontonimo: I've looked at your code

Default avatar.png ZXC01: i missed a and

Wontonimo: tell me what it is trying to do

Default avatar.png 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

Default avatar.png ZXC01: erm

Wontonimo: did you know you can go NE, NW, SE, SW ?

Default avatar.png ZXC01: i know

Default avatar.png ZXC01: but idk how to use

Wontonimo: can I propose another way of looking at the problem ?

Default avatar.png ZXC01: ok?

Wontonimo: it is easier if you instead solve 2 problems

Wontonimo: first solve if moving N/S will get you closer

Default avatar.png ZXC01: ok

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

Default avatar.png 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

Default avatar.png ZXC01: ok thx lemme try

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: ^

Default avatar.png 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

Default avatar.png ZXC01: im not spammng...

struct: So are you saying he is lying, or is not talking about you?

Default avatar.png 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

Default avatar.png ZXC01: ok

struct: ZXC01 Its all fine now

struct: all is clear

struct: You are not on my ban list anymore

Default avatar.png ZXC01: thanks,struct

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

Default avatar.png ZXC01: so can you ban a person without warning?

struct: yes

**Thorcode bruh

struct: guidelines say no

Default avatar.png ZXC01: oh

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

Default avatar.png ZXC01: you just ban them?

struct: yes

Thorcode: what about level 15

struct: I cant ban accounts higher than level 10

Default avatar.png ZXC01: really

Default avatar.png ZXC01: ?

DialFrost: why?

struct: sorry, im joking

Wontonimo: LOL

struct: I can ban anyone except mods

Thorcode: I know that

DialFrost: pfff lol

Default avatar.png ZXC01: lolollol

Thorcode: bc I get kick by uljahh once

DialFrost: *imagine banning another mod*

Default avatar.png ZXC01: same

Thorcode: I ask him to kick me

DialFrost: lol

Default avatar.png ZXC01: same

Default avatar.png ZXC01: i didnt know there are mod last time

Thorcode: to know the powerful of that command

Wontonimo: don't do that thor

Default avatar.png ZXC01: why?

Thorcode: why?

struct: I can easily misstype

Wontonimo: if you ask to get banned, you just may

Thorcode: he will ban me next time?

Default avatar.png ZXC01: but they can unban

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

Default avatar.png ZXC01: i need to buy a revive potion for the sheep then

struct: you can always email cg

struct: and sue the mod

Default avatar.png ZXC01: lol

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

Default avatar.png ZXC01: nice

struct: and he handles it

Thorcode: oh ok

Default avatar.png ZXC01: thibaud

Default avatar.png ZXC01: ?

Thorcode: he is a user

Wontonimo: he is "The Mod"

Thorcode: ok

Default avatar.png ZXC01: the main mod?

Wontonimo: been with CG since the early days. works there. is the face of CG online

Default avatar.png ZXC01: oh